Changeset 111 in pacpusframework
- Timestamp:
- Jun 13, 2013, 3:38:27 PM (11 years ago)
- Location:
- branches/2.0-beta1/src
- Files:
-
- 1 added
- 6 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 # ======================================== -
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 # ======================================== -
branches/2.0-beta1/src/FileLib/CMakeLists.txt
r110 r111 49 49 # Libraries 50 50 # ======================================== 51 if(WIN32) # TODO find other solution51 if(WIN32) 52 52 target_link_libraries( 53 53 ${PROJECT_NAME} 54 54 ${PACPUS_DEPENDENCIES_LIB} 55 55 optimized PacpusLib debug PacpusLib_d 56 #PacpusLib57 56 ) 58 57 endif() -
branches/2.0-beta1/src/PacpusLib/CMakeLists.txt
r110 r111 97 97 98 98 if(UNIX) 99 #set(LIBS FileLib)100 99 set(LIBS optimized FileLib debug FileLib_d) 101 100 else() 102 101 set(LIBS 103 #optimized ROAD_TIME debug ROAD_TIME_d # TODO why debug not found ? 104 ROAD_TIME 102 optimized ROAD_TIME debug ROAD_TIME_d 105 103 ) 106 104 endif() -
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 # ======================================== -
branches/2.0-beta1/src/PacpusTools/CMakeLists.txt
r110 r111 8 8 ################################################# 9 9 project(PacpusTools) 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 # ========================================
Note:
See TracChangeset
for help on using the changeset viewer.