Changeset 111 in pacpusframework for branches/2.0-beta1/src/DBITEPlayerLib
- Timestamp:
- Jun 13, 2013, 3:38:27 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/DBITEPlayerLib/CMakeLists.txt
r110 r111 8 8 ################################################# 9 9 project(dbiteplayerlib) 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 # ======================================== … … 41 31 ${PROJECT_BINARY_DIR}/../PacpusLib 42 32 ${PROJECT_BINARY_DIR}/../FileLib 33 ${PROJECT_BINARY_DIR}/../RoadTime 43 34 ) 44 35 … … 97 88 # Libraries 98 89 # ======================================== 90 # Windows platform 91 if(WIN32) 92 set(LIBS 93 optimized ROAD_TIME debug ROAD_TIME_d 94 Winmm 95 ) 96 endif() 97 99 98 # All platform 100 99 target_link_libraries( 101 100 ${PROJECT_NAME} 102 101 ${PACPUS_DEPENDENCIES_LIB} 103 #FileLib 104 #PacpusTools 102 ${LIBS} 105 103 optimized FileLib debug FileLib_d 106 104 optimized PacpusLib debug PacpusLib_d 107 105 ${QT_LIBRARIES} 108 106 ) 109 # Windows platform110 if(WIN32)111 target_link_libraries(112 ${PROJECT_NAME}113 ROAD_TIME114 #optimized ROAD_TIME debug ROAD_TIME_d115 Winmm116 )117 endif()118 107 119 108 # ========================================
Note:
See TracChangeset
for help on using the changeset viewer.