mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-07 21:31:42 +02:00
additional linker flags can be defined with "ADD_LDFLAGS"
This commit is contained in:
parent
2be2b4be57
commit
cbbd8bb6f9
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ DEBUG=-O3
|
|||
|
||||
|
||||
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals -I../common
|
||||
LDFLAGS = -logg -lFLAC
|
||||
LDFLAGS = $(ADD_LDFLAGS) -logg -lFLAC
|
||||
OBJ = snapClient.o stream.o clientConnection.o timeProvider.o player/player.o decoder/pcmDecoder.o decoder/oggDecoder.o decoder/flacDecoder.o controller.o ../common/sampleFormat.o
|
||||
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ DEBUG=-O3
|
|||
|
||||
|
||||
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DHAS_VORBIS -DHAS_VORBIS_ENC -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals -I../common
|
||||
LDFLAGS = -lvorbis -lvorbisenc -logg -lFLAC
|
||||
LDFLAGS = $(ADD_LDFLAGS) -lvorbis -lvorbisenc -logg -lFLAC
|
||||
OBJ = snapServer.o config.o controlServer.o controlSession.o jsonrp.o streamServer.o streamSession.o streamreader/streamUri.o streamreader/base64.o streamreader/streamManager.o streamreader/pcmStream.o streamreader/pipeStream.o streamreader/fileStream.o streamreader/processStream.o streamreader/airplayStream.o streamreader/spotifyStream.o streamreader/watchdog.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o ../common/sampleFormat.o
|
||||
|
||||
ifneq (,$(TARGET))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue