source: pacpusframework/trunk/src/PacpusLib/CMakeLists.txt@ 101

Last change on this file since 101 was 101, checked in by DHERBOMEZ Gérald, 11 years ago

Modifications of the build system.
Improvement of the FindPacpus.cmake package.

  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1#################################################
2# ___________ ____ ______ __ __ _____ #
3# \____ \__ \ _/ ___\\____ \| | \/ ___/ #
4# | |_> > __ \\ \___| |_> > | /\___ \ #
5# | __(____ /\___ > __/|____//____ > #
6# |__| \/ \/|__| \/ #
7# #
8#################################################
9project(PacpusLib)
10
11# ========================================
12# Configure qt4
13# ========================================
14if(QT4_FOUND)
15 set(QT_USE_QTXML true)
16 include(${QT_USE_FILE})
17else()
18 message(ERROR "Qt4 needed")
19endif()
20
21# ========================================
22# Compiler definitions
23# ========================================
24add_definitions(
25 -DPACPUSLIB_EXPORTS
26 -DQT_NO_KEYWORDS
27 ${QT_DEFINITIONS}
28)
29
30# ========================================
31# Include directories
32# ========================================
33include_directories(
34 ${QT_INCLUDE_DIR}
35)
36
37# ========================================
38# List of sources
39# ========================================
40set(
41 PROJECT_SRCS
42 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/cstdint.h
43 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/ComponentBase.h
44 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/ComponentFactory.h
45 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/ComponentFactoryBase.h
46 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/ComponentManager.h
47 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/Log.h
48 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/pacpus.h
49 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/PacpusApplication.h
50 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/road_time.h
51 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlComponentConfig.h
52 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlConfigFile.h
53 ./ComponentBase.cpp
54 ./ComponentFactoryBase.cpp
55 ./ComponentManager.cpp
56 ./Log.cpp
57 ./PacpusApplication.cpp
58 ./XmlComponentConfig.cpp
59 ./XmlConfigFile.cpp
60)
61
62# ========================================
63# Build a library
64# ========================================
65pacpus_add_library(
66 ${PROJECT_NAME} SHARED
67 ${PROJECT_SRCS}
68)
69
70# ========================================
71# Libraries
72# ========================================
73target_link_libraries(
74 ${PROJECT_NAME}
75 ${QT_LIBRARIES}
76 ${PACPUS_DEPENDENCIES_LIB}
77)
78
79# ========================================
80# Install
81# ========================================
82pacpus_install(${PROJECT_NAME})
83
84# ========================================
85# Folder
86# ========================================
87pacpus_folder(${PROJECT_NAME} "libraries")
Note: See TracBrowser for help on using the repository browser.