Changeset 120 in pacpusframework for branches/2.0-beta1/src
- Timestamp:
- Jul 15, 2013, 4:59:37 PM (11 years ago)
- Location:
- branches/2.0-beta1/src
- Files:
-
- 1 added
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/DBITEPlayer/CMakeLists.txt
r111 r120 67 67 # Libraries & Dependencies 68 68 # ======================================== 69 70 set(OPT_LIBRARIES 71 optimized dbiteplayerlib debug dbiteplayerlib_d 72 optimized FileLib debug FileLib_d 73 optimized PacpusLib debug PacpusLib_d 74 ) 75 69 76 # Windows platform 70 77 if(WIN32) 71 set(LIBS78 LIST(APPEND OPT_LIBRARIES 72 79 optimized ROAD_TIME debug ROAD_TIME_d 73 80 Winmm 74 )81 ) 75 82 endif() 76 83 … … 79 86 ${PROJECT_NAME} 80 87 ${QT_LIBRARIES} 81 ${ LIBS}88 ${OPT_LIBRARIES} 82 89 ${PACPUS_DEPENDENCIES_LIB} 83 optimized dbiteplayerlib debug dbiteplayerlib_d84 optimized FileLib debug FileLib_d85 optimized PacpusLib debug PacpusLib_d86 90 ) 87 91 -
branches/2.0-beta1/src/DBITEPlayerLib/CMakeLists.txt
r111 r120 88 88 # Libraries 89 89 # ======================================== 90 set(OPT_LIBRARIES 91 optimized FileLib debug FileLib_d 92 optimized PacpusLib debug PacpusLib_d 93 ) 94 90 95 # Windows platform 91 96 if(WIN32) 92 set(LIBS97 LIST(APPEND OPT_LIBRARIES 93 98 optimized ROAD_TIME debug ROAD_TIME_d 94 99 Winmm … … 100 105 ${PROJECT_NAME} 101 106 ${PACPUS_DEPENDENCIES_LIB} 102 ${LIBS} 103 optimized FileLib debug FileLib_d 104 optimized PacpusLib debug PacpusLib_d 107 ${OPT_LIBRARIES} 105 108 ${QT_LIBRARIES} 106 109 ) -
branches/2.0-beta1/src/PacpusLib/CMakeLists.txt
r111 r120 65 65 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/inputOutputInterface.h 66 66 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/PacpusEvent.h 67 #${PACPUS_INCLUDE_DIR}/Pacpus/kernel/ CommunicationComponent.h67 #${PACPUS_INCLUDE_DIR}/Pacpus/kernel/pacpusStruct.h 68 68 69 69 ./ComponentBase.cpp … … 75 75 ./XmlConfigFile.cpp 76 76 ./inputOutputBase.cpp 77 #./pacpusStruct.cpp 77 78 ) 78 79 … … 82 83 ) 83 84 84 85 qt5_wrap_cpp( 85 86 PROJECT_MOC_SRCS 86 87 ${FILES_TO_MOC} … … 97 98 98 99 if(UNIX) 99 set(LIBS optimized FileLib debug FileLib_d)100 set(OPT_LIBRARIES optimized FileLib debug FileLib_d) 100 101 else() 101 set(LIBS 102 optimized ROAD_TIME debug ROAD_TIME_d 103 ) 102 set(OPT_LIBRARIES optimized ROAD_TIME debug ROAD_TIME_d) 104 103 endif() 105 104 … … 111 110 ${QT_LIBRARIES} 112 111 ${PACPUS_DEPENDENCIES_LIB} 113 ${ LIBS}112 ${OPT_LIBRARIES} 114 113 ) 115 114 -
branches/2.0-beta1/src/PacpusLib/ComponentBase.cpp
r110 r120 104 104 } 105 105 } 106 107 void ComponentBase::addInput() 108 { 109 110 } 111 112 void ComponentBase::addOutput() 113 { 114 115 } -
branches/2.0-beta1/src/PacpusLib/ComponentManager.cpp
r110 r120 263 263 LOG_WARN("component '" << componentName << "' does not exist"); 264 264 } else { 265 // Pacpus 2.0 : add input and output 266 component->addInput(); 267 component->addOutput(); 268 265 269 if (component->configuration_ == ComponentBase::CONFIGURATION_DELAYED) { 266 270 LOG_DEBUG("try to configure component '" << componentName << "'"); … … 299 303 int connectionPriority = cfg.getConnectionPriority(); 300 304 305 306 //TODO set connection mode from string 307 308 //InputInterfaceBase::GetLast; 309 //InputInterfaceBase::NeverSkip; 310 //InputInterfaceBase::TimeBounded; 311 312 301 313 if (!createConnection(connectionOutput, connectionInput, connectionType,connectionPriority)) { 302 314 LOG_ERROR("cannot create connection '" << connectionOutput+"=>"+connectionInput << "'"); 303 315 continue; 304 316 } 305 } 317 } // for 306 318 307 319 return componentMap_.count(); -
branches/2.0-beta1/src/PacpusSensor/CMakeLists.txt
r111 r120 29 29 ${PROJECT_BINARY_DIR}/../PacpusLib 30 30 ${PROJECT_BINARY_DIR}/../FileLib 31 ${PROJECT_BINARY_DIR}/../PacpusTools 31 32 ) 32 33 … … 46 47 set(SENSOR_UI_CLASSES src/ui/pacpusmainwindow.ui) 47 48 set(SENSOR_MOC_CLASSES src/ui/pacpusmainwindow.h) 49 48 50 qt5_wrap_ui(SENSOR_UI_SOURCES_H ${SENSOR_UI_CLASSES}) 49 51 qt5_wrap_cpp(SENSOR_MOC_SOURCES ${SENSOR_MOC_CLASSES}) 52 50 53 source_group(Main_ui FILES ${PROJECT_SRCS} ) 51 54 source_group(moc FILES ${SENSOR_MOC_SOURCES} ${SENSOR_UI_SOURCES_H} ) … … 66 69 # Libraries 67 70 # ======================================== 71 72 set(OPT_LIBRARIES 73 optimized FileLib debug FileLib_d 74 optimized PacpusLib debug PacpusLib_d 75 optimized PacpusTools debug PacpusTools_d 76 ) 77 68 78 # Windows platform 69 79 if(WIN32) 70 set(LIBS80 LIST(APPEND OPT_LIBRARIES 71 81 optimized ROAD_TIME debug ROAD_TIME_d 72 82 Winmm … … 78 88 ${PROJECT_NAME} 79 89 ${PACPUS_DEPENDENCIES_LIB} 80 optimized FileLib debug FileLib_d 81 optimized PacpusLib debug PacpusLib_d 82 ${LIBS} 90 ${OPT_LIBRARIES} 83 91 ${QT_LIBRARIES} 84 92 ) -
branches/2.0-beta1/src/PacpusTools/CMakeLists.txt
r119 r120 40 40 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/geodesie.h 41 41 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/pacpusStruct.h 42 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h42 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h 43 43 ./src/matrice.cpp 44 44 ./src/geodesie.cpp 45 45 ./src/AsyncWorkerBase.cpp 46 46 ./src/PeriodicWorker.cpp 47 #./src/PacpusSerialPort.cpp47 ./src/PacpusSerialPort.cpp 48 48 ) 49 49 … … 55 55 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/AsyncWorkerBase.h 56 56 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PeriodicWorker.h 57 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h57 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h 58 58 ) 59 59
Note:
See TracChangeset
for help on using the changeset viewer.