Changeset 163 in pacpusframework


Ignore:
Timestamp:
08/01/13 17:26:02 (11 years ago)
Author:
Marek Kurdej
Message:

Added: test component from PacpusCityVIP.
Added: PACPUS_BUILD_EXAMPLES variable.

Location:
branches/2.0-beta1
Files:
9 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0-beta1/CMakeLists.txt

    r162 r163  
    8080# ========================================
    8181add_subdirectory(${PACPUS_SOURCE_DIR})
     82if(PACPUS_BUILD_EXAMPLES)
     83    add_subdirectory(examples)
     84endif()
    8285
    8386# ========================================
  • branches/2.0-beta1/cmake/PacpusConfiguration.cmake

    r119 r163  
    2222set(PACPUS_INSTALL_3RD  FALSE CACHE BOOL "Installation of the 3rd party")
    2323set(PACPUS_BUILD_DOC    FALSE CACHE BOOL "Whether build the documentation - requires Doxygen")
     24set(PACPUS_BUILD_EXAMPLES FALSE CACHE BOOL "Whether build the examples")
    2425set(PACPUS_USE_SOLUTION_FOLDERS  FALSE CACHE BOOL "Use solution folders to classify projects, works in MS Visual Studio")
    2526
  • branches/2.0-beta1/src/DBITEPlayer/CMakeLists.txt

    r151 r163  
    1212# Compiler definitions
    1313# ========================================
    14 add_definitions(
    15     ${QT_DEFINITIONS}
    16 )
     14add_definitions(${QT_DEFINITIONS})
    1715
    1816# ========================================
     
    3836# List of sources
    3937# ========================================
    40 set(
    41     PROJECT_SRCS
     38set(PROJECT_HDRS
    4239    ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/cstdint.h
    4340    ${PACPUS_INCLUDE_DIR}/Pacpus//kernel/ComponentBase.h
     
    5047    ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlComponentConfig.h
    5148    ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlConfigFile.h
     49)
     50set(PROJECT_SRCS
    5251    ./ComponentBase.cpp
    5352    ./ComponentFactoryBase.cpp
Note: See TracChangeset for help on using the changeset viewer.