Changeset 162 in pacpusframework for branches/2.0-beta1/src/PacpusTools
- Timestamp:
- Aug 1, 2013, 4:46:07 PM (11 years ago)
- Location:
- branches/2.0-beta1/src/PacpusTools
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/PacpusTools/CMakeLists.txt
r140 r162 9 9 project(PacpusTools) 10 10 11 create_export(EXPORT_HDR ${PROJECT_NAME} "${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools") 12 11 13 # ======================================== 12 14 # Compiler definitions 13 15 # ======================================== 14 add_definitions( 15 ${QT_DEFINITIONS} 16 -DPACPUS_TOOLS_EXPORTS 17 ) 16 add_definitions(${QT_DEFINITIONS}) 18 17 19 18 # ======================================== 20 19 # Include directories 21 20 # ======================================== 22 include_directories( 23 ${QT_INCLUDE_DIR} 24 ) 21 include_directories(${QT_INCLUDE_DIR}) 22 25 23 # ======================================== 26 24 # Link directories … … 34 32 # List of sources 35 33 # ======================================== 36 set( 37 PROJECT_SRCS 34 set(PROJECT_HDRS 35 ${EXPORT_HDR} 36 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/AsyncWorkerBase.h 37 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/BinaryDecoder.h 38 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/geodesie.h 38 39 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/matrice.h 39 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/ BinaryDecoder.h40 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PeriodicWorker.h 40 41 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PosixShMem.h 41 42 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/ShMem.h 42 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/geodesie.h43 43 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/pacpusStruct.h 44 44 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h 45 ) 46 47 set(PROJECT_SRCS 45 48 ./src/matrice.cpp 46 49 ./src/geodesie.cpp … … 53 56 # Files to MOC 54 57 # ======================================== 55 set( 56 FILES_TO_MOC 58 set(FILES_TO_MOC 57 59 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/AsyncWorkerBase.h 58 60 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PeriodicWorker.h … … 98 100 # Libraries 99 101 # ======================================== 100 101 102 set(OPT_LIBRARIES 102 103 optimized PacpusLib debug PacpusLib_d -
branches/2.0-beta1/src/PacpusTools/src/AsyncWorkerBase.cpp
r89 r162 2 2 // This file is part of the PACPUS framework distributed under the 3 3 // CECILL-C License, Version 1.0. 4 /// @author Samuel Gosselin <firstname.surname@utc.fr> 5 /// @date December, 2012 4 6 // %pacpus:license} 5 7 -
branches/2.0-beta1/src/PacpusTools/src/PeriodicWorker.cpp
r89 r162 2 2 // This file is part of the PACPUS framework distributed under the 3 3 // CECILL-C License, Version 1.0. 4 /// @author Samuel Gosselin <firstname.surname@utc.fr> 5 /// @date December, 2012 4 6 // %pacpus:license} 5 7 -
branches/2.0-beta1/src/PacpusTools/src/PosixShMem.cpp
r89 r162 2 2 // This file is part of the PACPUS framework distributed under the 3 3 // CECILL-C License, Version 1.0. 4 /// @author Gerald Dherbomez <firstname.surname@utc.fr> 5 /// @date January, 2007 4 6 // %pacpus:license} 5 7 -
branches/2.0-beta1/src/PacpusTools/src/Win32ShMem.cpp
r89 r162 2 2 // This file is part of the PACPUS framework distributed under the 3 3 // CECILL-C License, Version 1.0. 4 /// @author Gerald Dherbomez <firstname.surname@utc.fr> 5 /// @date January, 2007 4 6 // %pacpus:license} 5 7 … … 10 12 #include <windows.h> 11 13 12 13 14 DECLARE_STATIC_LOGGER("pacpus.core.Win32ShMem"); 14 15 16 using namespace pacpus; 15 17 using namespace std; 16 18 -
branches/2.0-beta1/src/PacpusTools/src/geodesie.cpp
r99 r162 2 2 // This file is part of the PACPUS framework distributed under the 3 3 // CECILL-C License, Version 1.0. 4 /// @author Jean Laneurit <firstname.surname@utc.fr> 5 /// @date April, 2010 4 6 // %pacpus:license} 5 7 -
branches/2.0-beta1/src/PacpusTools/src/matrice.cpp
r89 r162 2 2 // This file is part of the PACPUS framework distributed under the 3 3 // CECILL-C License, Version 1.0. 4 /// @author Jean Laneurit <firstname.surname@utc.fr> 5 /// @date April, 2010 4 6 // %pacpus:license} 5 7
Note:
See TracChangeset
for help on using the changeset viewer.