Removed some unnecessary junk from plugin CMakeLists.txt

This commit is contained in:
Casey Langen 2016-05-29 22:00:13 -07:00
parent ab12416976
commit 9400c65a61
3 changed files with 1 additions and 12 deletions

View File

@ -5,9 +5,5 @@ set (flacdecoder_SOURCES
FlacDecoder.cpp
)
add_definitions(
-D_DEBUG
)
add_library(flacdecoder SHARED ${flacdecoder_SOURCES})
target_link_libraries(flacdecoder ${musikbox_LINK_LIBS} flac)
target_link_libraries(flacdecoder ${musikbox_LINK_LIBS} FLAC)

View File

@ -5,11 +5,5 @@ set (mpg123decoder_SOURCES
Mpg123Decoder.cpp
)
add_definitions(
-DXML_STATIC
-D_CRT_SECURE_NO_DEPRECATE
-D_DEBUG
)
add_library(mpg123decoder SHARED ${mpg123decoder_SOURCES})
target_link_libraries(mpg123decoder ${musikbox_LINK_LIBS} mpg123)

View File

@ -5,7 +5,6 @@ set (taglib_plugin_SOURCES
)
add_definitions(
-D_DEBUG
-DTAGLIB_NO_CONFIG
)