source: pacpussensors/trunk/PacpusSocket/CMakeLists.txt@ 39

Last change on this file since 39 was 39, checked in by phudelai, 10 years ago

new CMakeLists.txt

File size: 2.1 KB
Line 
1project(PacpusSocket)
2################################################################################
3add_definitions(-DPACPUSSOCKET_EXPORTS)
4
5# ========================================
6# Configure qt4
7# ========================================
8if(QT4_FOUND)
9 set(QT_USE_QTXML true)
10 set(QT_USE_QTNETWORK true)
11 include(${QT_USE_FILE})
12else()
13 message(ERROR "Qt4 needed")
14endif()
15
16# ========================================
17# Compiler definitions
18# ========================================
19add_definitions(
20 ${QT_DEFINITIONS}
21)
22
23# ========================================
24# Include directories
25# ========================================
26include_directories(
27 ${PROJECT_BINARY_DIR}
28 ${QT_INCLUDE_DIR}
29)
30
31# ========================================
32# Link directories
33# ========================================
34link_directories(
35)
36
37pacpus_plugin(PLUGIN_CPP PLUGIN_H ${PROJECT_NAME} )
38
39# ========================================
40# List of sources
41# ========================================
42set(
43 PROJECT_SRCS
44 PacpusSocket.cpp
45 ${PLUGIN_CPP}
46)
47
48# ========================================
49# Files to MOC
50# ========================================
51set(
52 FILES_TO_MOC
53 PacpusSocket.h
54 ${PLUGIN_H}
55)
56
57set(
58 UI_FILES
59
60)
61
62# ========================================
63# Call MOC
64# ========================================
65qt4_wrap_cpp(
66 PROJECT_MOC_SRCS
67 ${FILES_TO_MOC}
68)
69
70qt4_wrap_ui(
71 PROJECT_UI_SRCS
72 ${UI_FILES}
73)
74
75# ========================================
76# Build a library
77# ========================================
78pacpus_add_library(
79 ${PROJECT_NAME} SHARED
80 ${PROJECT_SRCS}
81 ${PROJECT_MOC_SRCS}
82 ${PROJECT_UI_SRCS}
83)
84
85# ========================================
86# Libraries
87# ========================================
88# All the platform
89target_link_libraries(
90 ${PROJECT_NAME}
91 ${PACPUS_LIBRARIES}
92 ${QT_LIBRARIES}
93 ${PACPUS_DEPENDENCIES_LIB}
94)
95
96# ========================================
97# Install
98# ========================================
99pacpus_install(${PROJECT_NAME})
100
Note: See TracBrowser for help on using the repository browser.