Changeset 111 in pacpusframework for branches/2.0-beta1/src/DBITEPlayer
- Timestamp:
- Jun 13, 2013, 3:38:27 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/DBITEPlayer/CMakeLists.txt
r110 r111 8 8 ################################################# 9 9 project(DBITEPlayer) 10 11 # ========================================12 # Configure qt413 # ========================================14 #if(QT4_FOUND)15 # set(QT_USE_QTXML true)16 # include(${QT_USE_FILE})17 #else()18 # message(ERROR "Qt4 needed")19 #endif(QT4_FOUND)20 10 21 11 # ======================================== … … 40 30 ${PROJECT_BINARY_DIR}/../PacpusLib 41 31 ${PROJECT_BINARY_DIR}/../FileLib 32 ${PROJECT_BINARY_DIR}/../DBITEPlayerLib 42 33 ) 43 34 … … 76 67 # Libraries & Dependencies 77 68 # ======================================== 69 # Windows platform 70 if(WIN32) 71 set(LIBS 72 optimized ROAD_TIME debug ROAD_TIME_d 73 Winmm 74 ) 75 endif() 76 78 77 # All the platform 79 78 target_link_libraries( 80 79 ${PROJECT_NAME} 81 80 ${QT_LIBRARIES} 82 dbiteplayerlib 83 # FileLib 84 # PacpusLib 85 # PacpusTools 81 ${LIBS} 82 ${PACPUS_DEPENDENCIES_LIB} 83 optimized dbiteplayerlib debug dbiteplayerlib_d 84 optimized FileLib debug FileLib_d 85 optimized PacpusLib debug PacpusLib_d 86 86 ) 87 # Windows88 if(WIN32)89 target_link_libraries(90 ${PROJECT_NAME}91 ROAD_TIME92 Winmm93 )94 endif()95 87 96 88 # ========================================
Note:
See TracChangeset
for help on using the changeset viewer.