source: pacpusframework/trunk/src/DBITEPlayer/CMakeLists.txt@ 64

Last change on this file since 64 was 64, checked in by Marek Kurdej, 11 years ago

Modified property: added svn:keywords=Id.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1#################################################
2# ___________ ____ ______ __ __ _____ #
3# \____ \__ \ _/ ___\\____ \| | \/ ___/ #
4# | |_> > __ \\ \___| |_> > | /\___ \ #
5# | __(____ /\___ > __/|____//____ > #
6# |__| \/ \/|__| \/ #
7# #
8#################################################
9project(DBITEPlayer)
10
11# ========================================
12# Configure qt4
13# ========================================
14if(QT4_FOUND)
15 set(QT_USE_QTXML true)
16 set(QT_USE_QTNETWORK true)
17 include(${QT_USE_FILE})
18else()
19 message(ERROR "Qt4 needed")
20endif()
21
22# ========================================
23# Compiler definitions
24# ========================================
25add_definitions(
26 ${QT_DEFINITIONS}
27)
28
29# ========================================
30# Include directories
31# ========================================
32include_directories(
33 ${CMAKE_BINARY_DIR}/DBITEPlayer
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/road_time.h
50 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlComponentConfig.h
51 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlConfigFile.h
52 ./ComponentBase.cpp
53 ./ComponentFactoryBase.cpp
54 ./ComponentManager.cpp
55 ./Log.cpp
56 ./XmlComponentConfig.cpp
57 ./XmlConfigFile.cpp
58)
59
60# ========================================
61# Build an executable
62# ========================================
63pacpus_add_executable(
64 ${PROJECT_NAME}
65 ./src/main.cpp
66)
67
68# ========================================
69# Libraries & Dependencies
70# ========================================
71# All the platform
72target_link_libraries(
73 ${PROJECT_NAME}
74 ${QT_LIBRARIES}
75 dbiteplayerlib
76 FileLib
77 PacpusLib
78 PacpusTools
79)
80# Windows
81if(WIN32)
82 target_link_libraries(
83 ${PROJECT_NAME}
84 ROAD_TIME
85 Winmm
86 )
87endif()
88
89# ========================================
90# Install
91# ========================================
92pacpus_install(${PROJECT_NAME})
93
94# ========================================
95# Folder
96# ========================================
97pacpus_folder(${PROJECT_NAME} "tools")
Note: See TracBrowser for help on using the repository browser.