Changeset 163 in pacpusframework
- Timestamp:
- Aug 1, 2013, 5:26:02 PM (11 years ago)
- Location:
- branches/2.0-beta1
- Files:
-
- 9 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/CMakeLists.txt
r162 r163 80 80 # ======================================== 81 81 add_subdirectory(${PACPUS_SOURCE_DIR}) 82 if(PACPUS_BUILD_EXAMPLES) 83 add_subdirectory(examples) 84 endif() 82 85 83 86 # ======================================== -
branches/2.0-beta1/cmake/PacpusConfiguration.cmake
r119 r163 22 22 set(PACPUS_INSTALL_3RD FALSE CACHE BOOL "Installation of the 3rd party") 23 23 set(PACPUS_BUILD_DOC FALSE CACHE BOOL "Whether build the documentation - requires Doxygen") 24 set(PACPUS_BUILD_EXAMPLES FALSE CACHE BOOL "Whether build the examples") 24 25 set(PACPUS_USE_SOLUTION_FOLDERS FALSE CACHE BOOL "Use solution folders to classify projects, works in MS Visual Studio") 25 26 -
branches/2.0-beta1/src/DBITEPlayer/CMakeLists.txt
r151 r163 12 12 # Compiler definitions 13 13 # ======================================== 14 add_definitions( 15 ${QT_DEFINITIONS} 16 ) 14 add_definitions(${QT_DEFINITIONS}) 17 15 18 16 # ======================================== … … 38 36 # List of sources 39 37 # ======================================== 40 set( 41 PROJECT_SRCS 38 set(PROJECT_HDRS 42 39 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/cstdint.h 43 40 ${PACPUS_INCLUDE_DIR}/Pacpus//kernel/ComponentBase.h … … 50 47 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlComponentConfig.h 51 48 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlConfigFile.h 49 ) 50 set(PROJECT_SRCS 52 51 ./ComponentBase.cpp 53 52 ./ComponentFactoryBase.cpp
Note:
See TracChangeset
for help on using the changeset viewer.