- Timestamp:
- Dec 8, 2015, 11:43:08 PM (9 years ago)
- Location:
- trunk/StdDbtPlayerComponents
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/StdDbtPlayerComponents/CMakeLists.txt
r100 r108 19 19 ################################################################################ 20 20 # DIRECTORIES 21 include_directories( 21 include_directories( 22 22 ${PROJECT_BINARY_DIR} 23 23 ${QT_INCLUDE_DIR} … … 29 29 # Link directories 30 30 # ======================================== 31 link_directories( 31 link_directories( 32 32 ${PACPUS_LIB_DIR} 33 33 ) … … 40 40 StdDbtPlayerComponentsConfig.h 41 41 DbtPlySickLMSManager.h 42 DbtPlySickLDMRSManager.h 42 DbtPlySickLDMRSManager.h 43 44 DbtPlyAlascaManager.h 45 DbtPlyImageManager.h 46 DbtPlyCPTComponent.h 47 43 48 #${PROJECT_NAME}.xml 44 49 #${PROJECT_NAME}_d.xml … … 47 52 ${PLUGIN_CPP} 48 53 DbtPlySickLMSManager.cpp 49 DbtPlySickLDMRSManager.cpp 54 DbtPlySickLDMRSManager.cpp 55 56 DbtPlyAlascaManager.cpp 57 DbtPlyImageManager.cpp 58 DbtPlyCPTComponent.cpp 50 59 ) 51 60 … … 53 62 ${PLUGIN_HDR} 54 63 DbtPlySickLMSManager.h 55 DbtPlySickLDMRSManager.h 64 DbtPlySickLDMRSManager.h 65 66 DbtPlyAlascaManager.h 67 DbtPlyImageManager.h 68 DbtPlyCPTComponent.h 56 69 ) 57 70 … … 86 99 optimized PacpusLib debug PacpusLib_d 87 100 optimized PacpusTools debug PacpusTools_d 101 102 optimized NMEA0183LIB debug NMEA0183LIB_d 103 88 104 ) 89 105 if (WIN32) … … 92 108 ) 93 109 endif() 94 # LINK 95 target_link_libraries(${PROJECT_NAME} 96 ${PACPUS_LIBRARIES} 97 ${PACPUS_DEPENDENCIES_LIB} 110 # LINK 111 target_link_libraries(${PROJECT_NAME} 112 ${PACPUS_LIBRARIES} 113 ${PACPUS_DEPENDENCIES_LIB} 98 114 ${LIBS} 99 ${QT_LIBRARIES} 115 ${QT_LIBRARIES} 116 117 optimized NMEA0183LIB debug NMEA0183LIB_d 100 118 ) 101 119 qt5_use_modules(${PROJECT_NAME} Network) … … 105 123 ################################################################################ 106 124 # INSTALL 107 pacpus_install(${PROJECT_NAME}) 125 pacpus_install(${PROJECT_NAME}) 108 126 109 127 # install headers -
trunk/StdDbtPlayerComponents/DbtPlyAlascaManager.cpp
r65 r108 5 5 // author: Gerald Dherbomez 6 6 // Copyright Heudiasyc UMR UTC/CNRS 6599 7 // 7 // 8 8 // version: $Id: DbtPlyAlascaManager.cpp 1199 2012-08-01 08:51:24Z kurdejma $ 9 9 // 10 // purpose: 10 // purpose: 11 11 // ********************************************************************* 12 12 … … 54 54 { 55 55 DbtPlyFileManager::configureComponent(config); 56 mDataFilename = param.getProperty("binFile");56 mDataFilename = config.getProperty("binFile"); 57 57 58 58 return ComponentBase::CONFIGURED_OK;
Note:
See TracChangeset
for help on using the changeset viewer.