Changeset 111 in pacpusframework for branches/2.0-beta1/src/PacpusSensor
- Timestamp:
- Jun 13, 2013, 3:38:27 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/PacpusSensor/CMakeLists.txt
r110 r111 8 8 ################################################# 9 9 project(PacpusSensor) 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 # ======================================== … … 76 66 # Libraries 77 67 # ======================================== 68 # Windows platform 69 if(WIN32) 70 set(LIBS 71 optimized ROAD_TIME debug ROAD_TIME_d 72 Winmm 73 ) 74 endif() 75 78 76 # All the platform 79 77 target_link_libraries( 80 78 ${PROJECT_NAME} 81 79 ${PACPUS_DEPENDENCIES_LIB} 82 # dbiteplayerlib83 # FileLib84 # PacpusLib85 # PacpusTools86 80 optimized FileLib debug FileLib_d 87 81 optimized PacpusLib debug PacpusLib_d 82 ${LIBS} 88 83 ${QT_LIBRARIES} 89 84 ) 90 # Windows91 if(WIN32)92 target_link_libraries(93 ${PROJECT_NAME}94 ROAD_TIME95 Winmm96 )97 endif()98 85 99 86 # ========================================
Note:
See TracChangeset
for help on using the changeset viewer.