- Timestamp:
- Jul 24, 2013, 11:31:27 AM (11 years ago)
- Location:
- branches/2.0-beta1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/CMakeLists.txt
r123 r124 10 10 project(Pacpus) 11 11 cmake_minimum_required(VERSION 2.8) 12 cmake_policy(SET CMP0020 NEW) # for QT5.1 on windows 12 13 #cmake_policy(SET CMP0020 NEW) # for QT5.1 on windows / not work on linux 14 13 15 # ======================================== 14 16 # Pacpus version -
branches/2.0-beta1/cmake/PacpusUtilities.cmake
r121 r124 392 392 "// Export macro for use DLL for Windows only\n" 393 393 "#ifdef WIN32\n" 394 " #ifdef ${PLUGIN_NAME_UPPER}_EXPORT\n"394 " #ifdef ${PLUGIN_NAME_UPPER}_EXPORT\n" 395 395 "// make DLL\n" 396 " #define ${PLUGIN_NAME_UPPER}_API __declspec(dllexport)\n"397 " #else\n"396 " #define ${PLUGIN_NAME_UPPER}_API __declspec(dllexport)\n" 397 " #else\n" 398 398 "// use DLL\n" 399 " #define ${PLUGIN_NAME_UPPER}_API __declspec(dllimport)\n"400 " #endif\n"399 " #define ${PLUGIN_NAME_UPPER}_API __declspec(dllimport)\n" 400 " #endif\n" 401 401 "#else\n" 402 402 "// On other platforms, simply ignore this\n" 403 " #define ${PLUGIN_NAME_UPPER}_API\n"404 " //#endif\n"403 " #define ${PLUGIN_NAME_UPPER}_API\n" 404 "#endif\n\n" 405 405 406 406 "#endif // __EXPORT_${PLUGIN_NAME_UPPER}_H__\n" -
branches/2.0-beta1/src/PacpusTools/CMakeLists.txt
r123 r124 41 41 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/geodesie.h 42 42 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/pacpusStruct.h 43 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h43 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h 44 44 ./src/matrice.cpp 45 45 ./src/geodesie.cpp 46 46 ./src/AsyncWorkerBase.cpp 47 47 ./src/PeriodicWorker.cpp 48 ./src/PacpusSerialPort.cpp48 #./src/PacpusSerialPort.cpp 49 49 ) 50 50 … … 56 56 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/AsyncWorkerBase.h 57 57 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PeriodicWorker.h 58 ${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h58 #${PACPUS_INCLUDE_DIR}/Pacpus/PacpusTools/PacpusSerialPort.h 59 59 ) 60 60
Note:
See TracChangeset
for help on using the changeset viewer.