Skip to content

Backticks in linux example makefile #267

@son0p

Description

@son0p

To compile for UNIX_JACK I had to put backticks to part of line 52

https://github.com/TonicAudio/Tonic/blob/master/examples/Standalone/Linux/Makefile#L53

not working :

ifeq ($(AUDIO_API),UNIX_JACK)
RTAUDIO_LIBS = pkg-config --cflags --libs jack -lpthread

working

ifeq ($(AUDIO_API),UNIX_JACK)
RTAUDIO_LIBS = `pkg-config --cflags --libs jack` -lpthread

thanks to @falkTX

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions