diff options
| author | stalkerg <stalkerg@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-08-13 20:47:09 +0000 |
|---|---|---|
| committer | stalkerg <stalkerg@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-08-13 20:47:09 +0000 |
| commit | d9b85f44651fd336442d720e56645646e86d6d30 (patch) | |
| tree | ef02b58b7442464604da1a46c723a74cddf7e4fb /lib/CMakeLists.txt | |
| parent | 09955287c7d444e00b9aa0948abee58560b3d1a6 (diff) | |
| download | qmmp-d9b85f44651fd336442d720e56645646e86d6d30.tar.gz qmmp-d9b85f44651fd336442d720e56645646e86d6d30.tar.bz2 qmmp-d9b85f44651fd336442d720e56645646e86d6d30.zip | |
Fix bug in cmake scripts.
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@86 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'lib/CMakeLists.txt')
| -rw-r--r-- | lib/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 3b2fc8df9..134101ee4 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -24,6 +24,8 @@ SET(libqmmp_SRCS equ/iir_cfs.c equ/iir_fpu.c soundcore.cpp + streamreader.cpp + downloader.cpp ) SET(libqmmp_MOC_HDRS @@ -40,6 +42,8 @@ SET(libqmmp_MOC_HDRS equ/iir.h decoderfactory.h soundcore.h + streamreader.h + downloader.h ) QT4_WRAP_CPP(libqmmp_MOC_SRCS ${libqmmp_MOC_HDRS}) @@ -48,6 +52,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(qmmp SHARED ${libqmmp_SRCS} ${libqmmp_MOC_SRCS}) -target_link_libraries(qmmp ${QT_LIBRARIES}) +target_link_libraries(qmmp ${QT_LIBRARIES} curl) install(TARGETS qmmp LIBRARY DESTINATION lib) |
