annotate CMakeLists.txt @ 55:63c31e221118

CMake: Add forgotten files to install.
author SokoL_SD
date Mon, 18 May 2009 19:03:06 +0000
parents 2bd596a4b984
children 17165763b300
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
1 cmake_minimum_required(VERSION 2.6)
1
e78566595089 initial import
mandel
parents:
diff changeset
2 PROJECT(qtd CXX C)
e78566595089 initial import
mandel
parents:
diff changeset
3 FIND_PACKAGE(Qt4 REQUIRED)
e78566595089 initial import
mandel
parents:
diff changeset
4
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
5 ##--------------------------------------------
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
6 ## Settings.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
7 ##--------------------------------------------
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
8
5
834feae7809b Fix include paths in CMake script.
SokoL_SD
parents: 4
diff changeset
9 include_directories(${QT_INCLUDES} include ${CMAKE_CURRENT_BINARY_DIR}/include)
1
e78566595089 initial import
mandel
parents:
diff changeset
10
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
11 ## Options.
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
12 option(BUILD_EXAMPLES "Build examples" "ON")
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
13 option(GENERATE_DI_FILES "Generate *.di files with DC -H command" "OFF")
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
14
39
a5cba313c924 network and webkit are wrapped now
eldar
parents: 37
diff changeset
15 set(all_packages Core Gui OpenGL Xml Svg Network WebKit) ## TODO: Loading.
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
16
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
17
23
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
18 ## Strip utility.
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
19 find_program(STRIP strip)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
20
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
21 ## Find D compiler and parsing its version.
49
e00776053828 CMake: command "cmake -DDC=compiler_name" work correctly now.
SokoL_SD
parents: 44
diff changeset
22
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
23 find_program(DC dmd ldc)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
24 if (DC)
49
e00776053828 CMake: command "cmake -DDC=compiler_name" work correctly now.
SokoL_SD
parents: 44
diff changeset
25 get_filename_component(dc_path ${DC} PATH)
e00776053828 CMake: command "cmake -DDC=compiler_name" work correctly now.
SokoL_SD
parents: 44
diff changeset
26 if("${dc_path}" STREQUAL ${CMAKE_BINARY_DIR})
e00776053828 CMake: command "cmake -DDC=compiler_name" work correctly now.
SokoL_SD
parents: 44
diff changeset
27 get_filename_component(DC ${DC} NAME)
e00776053828 CMake: command "cmake -DDC=compiler_name" work correctly now.
SokoL_SD
parents: 44
diff changeset
28 endif("${dc_path}" STREQUAL ${CMAKE_BINARY_DIR})
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
29 exec_program(${DC} ARGS "" OUTPUT_VARIABLE d_output)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
30 string(REGEX MATCH "Digital Mars D Compiler v[0-9]\\.[0-9]+" dmd_version "${d_output}")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
31 if (dmd_version)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
32 set(D_IS_MARS true)
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
33 set(D_IS_DMD true)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
34 set(D_COMPILER_NAME "Digital Mars D Compiler")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
35 string(REGEX REPLACE "Digital Mars D Compiler v([0-9])\\.[0-9]+" "\\1" D_VERSION "${dmd_version}")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
36 string(REGEX REPLACE "Digital Mars D Compiler v[0-9]\\.([0-9]+)" "\\1" D_FRONTEND "${dmd_version}")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
37 else (dmd_version)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
38 string(REGEX MATCH "LLVM-based D Compiler" is_ldc "${d_output}")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
39 if (is_ldc)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
40 exec_program(${DC} ARGS "--version" OUTPUT_VARIABLE d_output)
11
28c9f8f8f34b Another small fix: correctly processing version of ldc based on llvm from trunk.
SokoL_SD
parents: 10
diff changeset
41 string(REGEX MATCH "based on DMD v[0-9]\\.[0-9]+" ldc_version "${d_output}")
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
42 set(D_IS_LLVM true)
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
43 set(D_IS_LDC true)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
44 if(ldc_version)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
45 set(D_IS_LLVM true)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
46 set(D_COMPILER_NAME "LLVM-based D Compiler")
11
28c9f8f8f34b Another small fix: correctly processing version of ldc based on llvm from trunk.
SokoL_SD
parents: 10
diff changeset
47 string(REGEX REPLACE "based on DMD v([0-9])\\.[0-9]+" "\\1" D_VERSION "${ldc_version}")
28c9f8f8f34b Another small fix: correctly processing version of ldc based on llvm from trunk.
SokoL_SD
parents: 10
diff changeset
48 string(REGEX REPLACE "based on DMD v[0-9]\\.([0-9]+)" "\\1" D_FRONTEND "${ldc_version}")
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
49 else(ldc_version)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
50 message(FATAL_ERROR "LDC compiler was found, but the version can not be processed")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
51 endif(ldc_version)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
52 else (is_ldc)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
53 message(FATAL_ERROR "D compliler not founded")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
54 endif(is_ldc)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
55 endif(dmd_version)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
56 message(STATUS "D compiler founded -- ${D_COMPILER_NAME} v${D_VERSION}.${D_FRONTEND}")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
57 else (DC)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
58 message(FATAL_ERROR "D compliler not founded")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
59 endif (DC)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
60
43
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
61 if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT OR "${CMAKE_INSTALL_PREFIX}" STREQUAL "")
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
62 get_filename_component(dc_path ${DC} PATH)
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
63 if("${dc_path}" STREQUAL "")
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
64 find_program(dc_path_tmp ${DC})
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
65 get_filename_component(dc_path ${dc_path_tmp} PATH)
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
66 mark_as_advanced(dc_path_tmp)
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
67 endif("${dc_path}" STREQUAL "")
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
68 get_filename_component(dc_parent_dir ${dc_path} NAME)
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
69 if("${dc_parent_dir}" STREQUAL "bin")
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
70 get_filename_component(dc_path ${dc_path} PATH)
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
71 endif("${dc_parent_dir}" STREQUAL "bin")
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
72 set(CMAKE_INSTALL_PREFIX
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
73 ${dc_path} CACHE PATH "QtD install prefix" FORCE
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
74 )
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
75 endif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT OR "${CMAKE_INSTALL_PREFIX}" STREQUAL "")
bfc76a437a62 CMake: autodetection of CMAKE_INSTALL_PREFIX. By default, command install will copy data to compiler directory.
SokoL_SD
parents: 42
diff changeset
76
42
eb3b5bbffc8f CMake: generator is not running multiple times.
SokoL_SD
parents: 39
diff changeset
77
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
78 if(D_IS_MARS)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
79 option(SINGLE_D_OBJECT "Build all d sources to one object file" "ON")
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
80 elseif(D_IS_LLVM)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
81 option(SINGLE_D_OBJECT "Build all d sources to one object file" "OFF")
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
82 if(SINGLE_D_OBJECT)
13
4faee409a98d Disable SINGLE_D_OBJECT option for ldc compiler.
SokoL_SD
parents: 12
diff changeset
83 message(STATUS "LDC not support build multiple source files in one .obj file")
4faee409a98d Disable SINGLE_D_OBJECT option for ldc compiler.
SokoL_SD
parents: 12
diff changeset
84 set(SINGLE_D_OBJECT "OFF")
4faee409a98d Disable SINGLE_D_OBJECT option for ldc compiler.
SokoL_SD
parents: 12
diff changeset
85 #set(D_FLAGS ${D_FLAGS} -singleobj)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
86 endif(SINGLE_D_OBJECT)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
87 endif(D_IS_MARS)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
88
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
89 # Check D compiler version
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
90 if(D_VERSION EQUAL "1")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
91 if (D_FRONTEND LESS "041")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
92 message(STATUS "Minimum required version of D compiler is 1.041 (or compiler based on this version)")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
93 endif(D_FRONTEND LESS "041")
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
94 set(D_TARGET d1-tango)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
95 elseif(D_VERSION EQUAL "2")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
96 set(D_TARGET ) ## TODO: hm... I don`t known this parameter for D2 ^(
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
97 endif(D_VERSION EQUAL "1")
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
98 set(D_FLAGS ${D_FLAGS} -I${CMAKE_SOURCE_DIR}/qt/d${D_VERSION})
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
99
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
100 # Debug and release flags.
23
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
101 if (NOT CMAKE_BUILD_TYPE)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
102 set(CMAKE_BUILD_TYPE Release)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
103 endif (NOT CMAKE_BUILD_TYPE)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
104 if(${CMAKE_BUILD_TYPE} MATCHES [dD][eE][bB][uU][gG])
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
105 set(CMAKE_BUILD_TYPE Debug)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
106 #set( SUFFIXLIB "${SUFFIXLIB}-debug" )
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
107 #set( SUFFIXBIN "${SUFFIXBIN}-debug" )
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
108 add_definitions(-DDEBUG)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
109 set(D_FLAGS ${D_FLAGS} -g -gc -debug)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
110 elseif (NOT ${CMAKE_BUILD_TYPE} MATCHES [rR][eE][lL][eE][aA][sS])
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
111 message(STATUS "Only debug and release configuration are now supproted. Configuration changed to 'Release'")
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
112 set(CMAKE_BUILD_TYPE Release)
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
113 endif (${CMAKE_BUILD_TYPE} MATCHES [dD][eE][bB][uU][gG])
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
114 if (${CMAKE_BUILD_TYPE} MATCHES [rR][eE][lL][eE][aA][sS])
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
115 #add_definitions(-UNO_DEBUG)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
116 set(D_FLAGS ${D_FLAGS} -O -release -inline)
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
117 if(D_IS_MARS)
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
118 set(D_FLAGS ${D_FLAGS} -inline)
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
119 elseif(D_IS_LLVM)
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
120 set(D_FLAGS ${D_FLAGS} -enable-inlining)
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
121 endif(D_IS_MARS)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
122 if(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
123 set(D_FLAGS ${D_FLAGS} -L/subsystem:windows)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
124 endif(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
23
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
125 endif(${CMAKE_BUILD_TYPE} MATCHES [rR][eE][lL][eE][aA][sS] )
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
126
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
127 set(D_FLAGS ${D_FLAGS} -I${CMAKE_BINARY_DIR} -I${CMAKE_SOURCE_DIR})
10
390725da0980 Trivial fix in cmake.
SokoL_SD
parents: 9
diff changeset
128 if(D_IS_MARS AND ${CMAKE_SYSTEM_NAME} STREQUAL Windows)
390725da0980 Trivial fix in cmake.
SokoL_SD
parents: 9
diff changeset
129 else(D_IS_MARS AND ${CMAKE_SYSTEM_NAME} STREQUAL Windows)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
130 set(D_FLAGS ${D_FLAGS} -L-L${CMAKE_BINARY_DIR}/lib)
10
390725da0980 Trivial fix in cmake.
SokoL_SD
parents: 9
diff changeset
131 endif(D_IS_MARS AND ${CMAKE_SYSTEM_NAME} STREQUAL Windows)
390725da0980 Trivial fix in cmake.
SokoL_SD
parents: 9
diff changeset
132
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
133 # System specifc settings.
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
134 if(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
135 set(implib implib)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
136 find_program(IMPLIB ${implib})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
137 if (NOT IMPLIB)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
138 message(FATAL_ERROR "implib not found. You can donwload it from http://ftp.digitalmars.com/bup.zip")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
139 endif (NOT IMPLIB)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
140 set(D_OBJECT_SUFFIX .obj)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
141 if(D_IS_MARS)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
142 set(D_LIB_SUFFIX .lib)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
143 set(D_LIB_PREFIX )
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
144 elseif(D_IS_LDC)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
145 set(D_LIB_SUFFIX .a)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
146 set(D_LIB_PREFIX lib)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
147 endif(D_IS_MARS)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
148 set(GEN_OPT ${GEN_OPT} --cpp_shared)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
149 add_definitions(-DCPP_SHARED)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
150 string(REGEX REPLACE ".dll([A-Za-z\\.0-9]+)" "\\1" CMAKE_IMPORT_LIBRARY_SUFFIX "${CMAKE_IMPORT_LIBRARY_SUFFIX}")
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
151 elseif(${CMAKE_SYSTEM_NAME} STREQUAL Linux)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
152 set(D_LIB_SUFFIX .a)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
153 set(D_LIB_PREFIX lib)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
154 set(D_OBJECT_SUFFIX .o)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
155 endif(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
156
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
157 set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} ./)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
158 set(GEN_OPT ${GEN_OPT} --d-target=${D_TARGET})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
159
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
160 ##--------------------------------------------
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
161 ## Macroses and functions.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
162 ##--------------------------------------------
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
163
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
164 ## Make native path.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
165 ## Usage:
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
166 ## set(path c:/file_path/file_name.cpp)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
167 ## make_native_path(path)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
168 ## message(STATUS ${path})
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
169 ## Output:
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
170 ## -- "c:\file_path\file_name.cpp"
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
171 ## Command "file(TO_NATIVE_PATH ...)" is wrong on Windows
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
172 macro(MAKE_NATIVE_PATH pathname)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
173 if(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
174 # An extra \\ escape is necessary to get a \ through CMake's processing.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
175 string(REPLACE "/" "\\" ${pathname} "${${pathname}}")
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
176 # Enclose with UNESCAPED quotes. This means we need to escape our
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
177 # quotes once here, i.e. with \"
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
178 set(${pathname} \"${${pathname}}\")
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
179 endif(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
180 endmacro(MAKE_NATIVE_PATH)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
181
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
182 ##
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
183 ## Example:
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
184 ## set(path 24.3+23.bin)
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
185 ## obj_path(path)
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
186 ## message(STATUS ${path})
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
187 ## Example output:
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
188 ## -- 24\.3\+23\.bin
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
189 macro(regex_safe_string outvariable)
50
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
190 set(${outvariable} ${ARGN})
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
191 set(__regex_chars__ ^ $ . ] [ - * + ? | \( \))
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
192 foreach(__regex_char__ ${__regex_chars__})
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
193 string(REPLACE "${__regex_char__}"
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
194 "\\${__regex_char__}" ${outvariable} ${${outvariable}}
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
195 )
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
196 endforeach(__regex_char__ ${__regex_chars__})
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
197 endmacro(regex_safe_string outvariable)
50
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
198
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
199 ## Remove unnecessary path to the object file.
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
200 ## path -- path to object file.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
201 ## Example:
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
202 ## set(path ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/target.dir/main.d.obj)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
203 ## obj_path(path)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
204 ## message(STATUS ${path})
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
205 ## Example output:
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
206 ## -- CMakeFiles/target.dir/main.d.obj
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
207 macro(OBJ_PATH path)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
208 regex_safe_string(__cbd_safe__ ${CMAKE_CURRENT_BINARY_DIR})
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
209 regex_safe_string(__csd_safe__ ${CMAKE_CURRENT_SOURCE_DIR})
50
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
210 set(regexp_str "(${__cbd_safe__}/|${__csd_safe__}/|)(.+)")
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
211 string(REGEX REPLACE ${regexp_str} "\\2" ${path} "${${path}}")
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
212 endmacro(OBJ_PATH)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
213
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
214 ## Compile d files.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
215 ## target -- name of a new target.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
216 ## objects_list -- created object files.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
217 ## params -- sources files.
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
218 macro(compile_d_files target objects_list)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
219 set(${objects_list})
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
220 set(tmp_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/${target}.dir)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
221 file(MAKE_DIRECTORY ${tmp_dir})
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
222 if(NOT SINGLE_D_OBJECT)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
223 foreach (d_source_p ${ARGN})
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
224 ## TODO: why find_file command work wrong?
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
225 find_file(d_source_p ${d_source_p} PATHS ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
226 ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR})
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
227 set (d_source ${d_source_p})
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
228 obj_path(d_source)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
229 set(d_obj ${tmp_dir}/${d_source}${D_OBJECT_SUFFIX})
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
230 set(${objects_list} ${${objects_list}} ${d_obj})
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
231 get_filename_component(path ${d_obj} PATH)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
232 file(MAKE_DIRECTORY ${path})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
233 set(d_obj_out ${d_obj})
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
234 obj_path(d_obj_out)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
235 add_custom_command(OUTPUT "${d_obj}"
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
236 COMMAND "${DC}"
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
237 ARGS ${D_FLAGS} -c ${d_source_p} -of${d_obj}
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
238 COMMENT "Building ${d_obj_out}"
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
239 DEPENDS ${d_source_p}
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
240 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
241 )
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
242 endforeach(d_source_p)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
243 else(NOT SINGLE_D_OBJECT)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
244 set(${objects_list} ${tmp_dir}/${target}${D_OBJECT_SUFFIX})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
245 set(d_obj_out ${${objects_list}})
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
246 obj_path(d_obj_out)
12
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
247 set(parameters ${D_FLAGS} -c ${ARGN} -of${${objects_list}})
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
248 set(parameters_list_file ${tmp_dir}/parameters)
12
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
249 if(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
250 file(REMOVE ${parameters_list_file})
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
251 foreach(arg ${parameters})
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
252 file(APPEND ${parameters_list_file} "${arg}\n")
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
253 endforeach(arg)
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
254 set(param @${parameters_list_file})
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
255 elseif(${CMAKE_SYSTEM_NAME} STREQUAL Linux)
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
256 set(param ${parameters})
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
257 endif(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
258 add_custom_command(OUTPUT "${${objects_list}}"
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
259 COMMAND "${DC}"
12
74465e760fde Small cmake fix on linux.
SokoL_SD
parents: 11
diff changeset
260 ARGS ${param}
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
261 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
262 DEPENDS ${ARGN}
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
263 COMMENT ""
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
264 )
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
265 endif(NOT SINGLE_D_OBJECT)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
266 add_custom_target(${target} DEPENDS "${${objects_list}}")
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
267 endmacro(compile_d_files objects_list)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
268
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
269 ## Build example macro.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
270 ## name -- example name.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
271 ## Options:
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
272 ## PACKAGES -- list of packages to link to exaple (for example, QtCore QtGui QtOpenGL).
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
273 ## Default value is "QtCore QtGui".
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
274 ## params -- sources d files.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
275 ## Usage:
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
276 ## build_example(ExampleName PACKAGES QtCore QtGui QtXml main.d another_d_file.d)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
277 macro(build_example name)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
278 set(is_sources)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
279 set(is_libs)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
280 set(qtd_libs ${core_lib_param} ${gui_lib_param})
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
281 set(reqs Core Gui)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
282 foreach(param ${ARGN})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
283 if(is_libs)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
284 string(REGEX REPLACE "Qt([A-Za-z0-9])" "\\1" param_package "${param}")
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
285 if(${param_package} STREQUAL ${param})
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
286 set(is_libs)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
287 set(is_sources 1)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
288 else(${param_package} STREQUAL ${param})
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
289 set(reqs ${reqs} ${param_package})
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
290 endif(${param_package} STREQUAL ${param})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
291 endif(is_libs)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
292 if(NOT is_libs)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
293 if(NOT is_sources)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
294 if(${param} STREQUAL PACKAGES)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
295 set(is_libs 1)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
296 set(reqs)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
297 else(${param} STREQUAL PACKAGES)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
298 set(is_sources 1)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
299 endif(${param} STREQUAL PACKAGES)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
300 endif(NOT is_sources)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
301 if(is_sources)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
302 set(sources ${sources} ${param})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
303 endif(is_sources)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
304 endif(NOT is_libs)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
305 endforeach(param ${ARGN})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
306 compile_d_files(${name}_dobjs objects ${sources} )
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
307 set(output ${CMAKE_CURRENT_BINARY_DIR}/${name}${CMAKE_EXECUTABLE_SUFFIX})
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
308 set(output_native ${output})
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
309 make_native_path(output_native)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
310 foreach(req ${reqs})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
311 set(is_founded)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
312 foreach(package_big ${packages_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
313 string(TOLOWER ${package_big} package)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
314 if(${req} STREQUAL ${package_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
315 set(is_founded 1)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
316 break(package_big ${packages_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
317 endif(${req} STREQUAL ${package_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
318 endforeach(package_big ${packages_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
319 if(NOT is_founded)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
320 message(STATUS "Example '${name}' required package '${req}', but its not active. Example will not build")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
321 return(build_example name)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
322 else(NOT is_founded)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
323 set(qtd_libs ${${package}_lib_param} ${qtd_libs})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
324 endif(NOT is_founded)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
325 endforeach(req ${reqs})
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
326 add_custom_command(OUTPUT "${output}"
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
327 COMMAND "${DC}"
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
328 ARGS ${D_FLAGS} ${libs_path} ${qtd_libs} ${objects}
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
329 -of${output_native}
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
330 DEPENDS ${objects}
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
331 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
332 COMMENT "Building example ${name}"
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
333 )
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
334 add_custom_target(example_${name} ALL DEPENDS "${output}")
23
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
335 ## TODO: Enable on windows too.
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
336 if(STRIP AND ${CMAKE_BUILD_TYPE} EQUAL "Release" AND ${CMAKE_SYSTEM_NAME} STREQUAL Linux) ##
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
337 add_custom_command(TARGET example_${name} POST_BUILD COMMAND "${STRIP}" ARGS "${output}")
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
338 endif(STRIP AND ${CMAKE_BUILD_TYPE} EQUAL "Release" AND ${CMAKE_SYSTEM_NAME} STREQUAL Linux)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
339 add_dependencies(example_${name} allpackages)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
340 endmacro(build_example sources)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
341
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
342 ##--------------------------------------------
23
907d517d37c6 CMake: Set Release configuration as default.
SokoL_SD
parents: 17
diff changeset
343 ## Build and install library.
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
344 ##--------------------------------------------
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
345
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
346 file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
347 add_custom_target(allpackages ALL)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
348 link_directories(${CMAKE_BINARY_DIR}/CMakeFiles)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
349
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
350 foreach(package_big ${all_packages})
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
351 string(TOLOWER ${package_big} package)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
352 ## Loading settings for package.
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
353 set(required)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
354 set(d_objs)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
355 set(cpp_objs)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
356 set(d_sources)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
357 set(cpp_sources)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
358 set(lib_name)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
359 set(link_cpp)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
360 set(link_d)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
361 set(cpp_files)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
362 set(d_files)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
363 set(classes)
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
364 set(d_generated_files)
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
365 set(d_version_files)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
366 set(link_example)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
367 include (${CMAKE_SOURCE_DIR}/build/${package}.txt)
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
368
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
369 set(all_req_found 1)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
370 string(TOUPPER ${package} package_upper)
42
eb3b5bbffc8f CMake: generator is not running multiple times.
SokoL_SD
parents: 39
diff changeset
371 option(BUILD_QT_${package_upper} "Build Qt${package_big}" "ON")
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
372 if(BUILD_QT_${package_upper})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
373 foreach(req ${required})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
374 set(req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
375 foreach(pack ${packages_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
376 if(${pack} STREQUAL ${req})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
377 set(req_found 1)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
378 endif(${pack} STREQUAL ${req})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
379 endforeach(pack ${packages})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
380 if(NOT req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
381 set(req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
382 foreach(pack ${all_packages})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
383 if(${pack} STREQUAL ${req})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
384 set(req_found 1)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
385 endif(${pack} STREQUAL ${req})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
386 endforeach(pack ${all_packages})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
387 if(req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
388 message(STATUS "Package '${package_big}' required '${req}', but its not active")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
389 else(req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
390 message(STATUS "Package '${package_big}' required '${req}', but its not found")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
391 endif(req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
392 set(all_req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
393 endif(NOT req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
394 endforeach(req ${required})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
395 else(BUILD_QT_${package_upper})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
396 set(all_req_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
397 endif(BUILD_QT_${package_upper})
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
398
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
399 ## TODO: cleanup.
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
400 if("${all_req_found}" EQUAL 1)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
401 set(packages_big ${packages_big} ${package_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
402 set(packages ${packages} ${package})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
403 ## Loading package sources list.
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
404 foreach(d_source ${d_version_files})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
405 set(d_sources ${d_sources} ${CMAKE_SOURCE_DIR}/qt/d${D_VERSION}/qt/${d_source}.d)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
406 if(NOT GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
407 get_filename_component(path ${d_source}.d PATH)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
408 get_filename_component(name ${d_source}.d NAME_WE)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
409 install(FILES ${CMAKE_SOURCE_DIR}/qt/d${D_VERSION}/qt/${d_source}.d COMPONENT qtd DESTINATION include/d/qt/${path} RENAME ${name}.di)
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
410 install(FILES ${CMAKE_SOURCE_DIR}/qt/d${D_VERSION}/qt/${d_source}_enum.d COMPONENT qtd DESTINATION include/d/qt/${path} RENAME ${name}_enum.di OPTIONAL)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
411 endif(NOT GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
412 endforeach(d_source)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
413 foreach(d_source ${d_files})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
414 set(d_sources ${d_sources} ${CMAKE_SOURCE_DIR}/qt/${d_source}.d)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
415 if(NOT GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
416 get_filename_component(path ${d_source}.d PATH)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
417 get_filename_component(name ${d_source}.d NAME_WE)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
418 install(FILES ${CMAKE_SOURCE_DIR}/qt/${d_source}.d DESTINATION include/d/qt/${path} COMPONENT qtd RENAME ${name}.di)
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
419 install(FILES ${CMAKE_SOURCE_DIR}/qt/${d_source}_enum.d DESTINATION include/d/qt/${path} COMPONENT qtd RENAME ${name}_enum.di OPTIONAL)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
420 endif(NOT GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
421 endforeach(d_source)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
422 foreach(d_source ${d_generated_files})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
423 set(d_sources ${d_sources} ${CMAKE_BINARY_DIR}/qt/${d_source}.d)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
424 if(NOT GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
425 get_filename_component(path ${d_source}.d PATH)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
426 get_filename_component(name ${d_source}.d NAME_WE)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
427 install(FILES ${CMAKE_BINARY_DIR}/qt/${d_source}.d DESTINATION include/d/qt/${path} COMPONENT qtd RENAME ${name}.di)
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
428 install(FILES ${CMAKE_BINARY_DIR}/qt/${d_source}_enum.d DESTINATION include/d/qt/${path} COMPONENT qtd RENAME ${name}_enum.di OPTIONAL)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
429 endif(NOT GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
430 endforeach(d_source)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
431 foreach (cpp_source ${cpp_files})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
432 set(cpp_sources ${cpp_sources} ${CMAKE_SOURCE_DIR}/cpp/${cpp_source}.cpp)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
433 endforeach(cpp_source)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
434 set(classes ArrayOps ${classes})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
435 foreach(class ${classes})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
436 set(d_sources ${d_sources} ${CMAKE_BINARY_DIR}/qt/${package}/${class}.d)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
437 set(cpp_sources ${cpp_sources} ${CMAKE_BINARY_DIR}/cpp/qt_${package}/${class}_shell.cpp)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
438 set(files_for_gen ${files_for_gen} ${CMAKE_BINARY_DIR}/cpp/qt_${package}/${class}_shell.cpp
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
439 ${CMAKE_BINARY_DIR}/qt/${package}/${class}.d)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
440 if(NOT GENERATE_DI_FILES)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
441 install(FILES ${CMAKE_BINARY_DIR}/qt/${package}/${class}.d DESTINATION include/d/qt/${package} COMPONENT qtd RENAME ${class}.di)
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
442 install(FILES ${CMAKE_BINARY_DIR}/qt/${package}/${class}_enum.d DESTINATION include/d/qt/${package} COMPONENT qtd RENAME ${class}_enum.di OPTIONAL)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
443 endif(NOT GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
444 endforeach(class)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
445
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
446 ## Link CPP library.
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
447 add_library(cpp_${package} SHARED ${cpp_sources})
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
448
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
449 ## Link D library.
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
450 set(lib_name ${D_LIB_PREFIX}qtd${package}${D_LIB_SUFFIX})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
451 set(lib lib/${lib_name})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
452 compile_d_files(${package}_dobjs objects ${d_sources})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
453 set(d_objs ${d_objs} ${objects})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
454 if(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
455 set_property(TARGET cpp_${package} PROPERTY RUNTIME_OUTPUT_DIRECTORY lib)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
456 set_property(TARGET cpp_${package} PROPERTY ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/CMakeFiles)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
457 foreach(req ${required})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
458 set(is_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
459 foreach(pack ${packages_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
460 if("${pack}" STREQUAL "${req}")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
461 set(is_found 1)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
462 break(pack ${packages_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
463 endif("${pack}" STREQUAL "${req}")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
464 endforeach(pack ${packages_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
465 if(NOT is_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
466 message(FATAL_ERROR "Package ${package_big} required ${req}, but its not found")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
467 endif(NOT is_found)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
468 string(TOUPPER ${req} req_upper)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
469 string(TOLOWER ${req} req_lower)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
470 set(link_cpp ${link_cpp} cpp_${req_lower} ${QT_QT${req_upper}_LIBRARY})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
471 endforeach(req ${require})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
472 string(TOUPPER ${package} package_upper)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
473 set(link_cpp ${link_cpp} ${QT_QT${package_upper}_LIBRARY})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
474 target_link_libraries(cpp_${package} ${link_cpp} )
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
475 set(cpp_lib ${CMAKE_BINARY_DIR}/lib/libcpp_${package}.dll)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
476 set(cpp_lib_native ${cpp_lib})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
477 make_native_path(cpp_lib_native)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
478 set(d_implib ${CMAKE_BINARY_DIR}/CMakeFiles/${package}.dir/cpp_${package}.lib)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
479 set(d_implib_native ${d_implib})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
480 make_native_path(d_implib_native)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
481 add_custom_command(
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
482 OUTPUT "${d_implib}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
483 COMMAND "${IMPLIB}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
484 ARGS /system /PAGESIZE:32 ${d_implib_native} ${cpp_lib_native}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
485 DEPENDS "cpp_${package}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
486 COMMENT "Creating implib ${lib_name}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
487 )
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
488 add_custom_command(
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
489 OUTPUT "${lib}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
490 COMMAND "${DC}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
491 ARGS -lib ${d_objs} ${d_implib} -of${lib}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
492 DEPENDS ${d_objs} ${d_implib}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
493 COMMENT "Linking ${lib_name}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
494 )
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
495 install(FILES ${cpp_lib} COMPONENT qtd DESTINATION lib)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
496 else(${CMAKE_SYSTEM_NAME} STREQUAL Linux)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
497 set_property(TARGET cpp_${package} PROPERTY LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/CMakeFiles)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
498 foreach(cpp_source ${cpp_sources})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
499 set(cpp_source ${cpp_source})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
500 obj_path(cpp_source)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
501 set(cpp_objs ${cpp_objs} CMakeFiles/cpp_${package}.dir/${cpp_source}${CMAKE_CXX_OUTPUT_EXTENSION})
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
502 endforeach(cpp_source)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
503 add_custom_command(
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
504 OUTPUT "${lib}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
505 COMMAND "${CMAKE_AR}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
506 ARGS rcs ${lib} ${d_objs} ${cpp_objs}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
507 DEPENDS ${d_objs} cpp_${package}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
508 COMMENT "Linking ${lib_name}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
509 )
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
510 endif(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
511 install(FILES ${CMAKE_BINARY_DIR}/${lib} COMPONENT qtd DESTINATION lib)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
512
28
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
513 ## Dependences.
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
514 add_custom_target(${package} DEPENDS ${lib})
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
515 foreach(depend ${required})
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
516 string(TOLOWER ${depend} depend)
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
517 add_dependencies(cpp_${package} cpp_${depend})
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
518 add_dependencies(${package} ${depend})
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
519 endforeach(depend ${required})
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
520 add_dependencies(allpackages ${package})
10baf869635a CMake: QtD build with cmake again, but some functionality from previews revision are disabled.
SokoL_SD
parents: 27
diff changeset
521
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
522 ## Paths for QtD libs. Needed by examples.
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
523 if(${CMAKE_SYSTEM_NAME} STREQUAL Windows AND D_IS_MARS)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
524 set(libs_path ${CMAKE_BINARY_DIR}/lib/qtd${package}.lib)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
525 make_native_path(libs_path)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
526 set(${package}_lib_param -L+${libs_path})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
527 foreach(link ${link_example})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
528 set(link ${CMAKE_SOURCE_DIR}/lib/${link}.lib)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
529 make_native_path(link)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
530 set(link -L+${link})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
531 set(${package}_lib_param ${${package}_lib_param} ${link})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
532 endforeach(link ${link_example})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
533 else (${CMAKE_SYSTEM_NAME} STREQUAL Windows AND D_IS_MARS)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
534 set(${package}_lib_param -L-lqtd${package} -L-lQt${package_big})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
535 foreach(link ${link_example})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
536 set(${package}_lib_param ${${package}_lib_param} ${link})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
537 endforeach(link ${link_example})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
538 endif(${CMAKE_SYSTEM_NAME} STREQUAL Windows AND D_IS_MARS)
9
16eec94c5b33 Bug fixes in CMake script.
SokoL_SD
parents: 7
diff changeset
539
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
540 if(GENERATE_DI_FILES)
50
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
541 regexseafestring(cbd_safe ${CMAKE_BINARY_DIR})
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
542 regexseafestring(csd_safe ${CMAKE_SOURCE_DIR})
cc557203146c CMake: fix building when path of source or build directory contain the reserve regex symbols.
SokoL_SD
parents: 49
diff changeset
543 set(regexp_str "(${csd}/qt/d${D_VERSION}|${csd_safe}|${cbd_safe})/([A-Za-z0-9\\-_\\\\/]+)[/]+([A-Za-z0-9\\-_\\\\]+).d")
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
544 foreach(source ${d_sources})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
545 # find_file(source ${source} PATHS ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
546 # ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
547 string(REGEX REPLACE ${regexp_str} "\\2" inc_path "${source}")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
548 string(REGEX REPLACE ${regexp_str} "\\3" file_name "${source}")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
549 set(interface_file_path ${CMAKE_BINARY_DIR}/d/${inc_path})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
550 set(interface_file "${interface_file_path}/${file_name}.di")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
551 if(NOT "${file_name}" STREQUAL "QGlobal")
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
552 add_custom_command(OUTPUT "${interface_file}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
553 COMMAND "${DC}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
554 ARGS ${D_FLAGS} -o- -H -Hd${interface_file_path} ${source}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
555 COMMENT "Generating header for ${source}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
556 DEPENDS ${source}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
557 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
558 )
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
559 else(NOT "${file_name}" STREQUAL "QGlobal") ## DMD frontend crash on this file.
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
560 add_custom_command(OUTPUT "${interface_file}"
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
561 COMMAND ${CMAKE_COMMAND} -E make_directory ${interface_file_path}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
562 COMMAND ${CMAKE_COMMAND} -E remove -f ${interface_file}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
563 COMMAND ${CMAKE_COMMAND} -E copy ${source} ${interface_file}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
564 COMMENT ""
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
565 DEPENDS ${source}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
566 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
567 )
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
568 endif(NOT "${file_name}" STREQUAL "QGlobal" AND GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
569 set(interfaces_list ${interfaces_list} ${interface_file_path}/${file_name}.di)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
570 install(FILES ${interface_file} COMPONENT qtd DESTINATION include/d/${inc_path})
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
571 endforeach(source)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
572 endif(GENERATE_DI_FILES)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
573 endif("${all_req_found}" EQUAL 1)
13
4faee409a98d Disable SINGLE_D_OBJECT option for ldc compiler.
SokoL_SD
parents: 12
diff changeset
574 endforeach(package_big ${packages_big})
4faee409a98d Disable SINGLE_D_OBJECT option for ldc compiler.
SokoL_SD
parents: 12
diff changeset
575 if(GENERATE_DI_FILES)
4faee409a98d Disable SINGLE_D_OBJECT option for ldc compiler.
SokoL_SD
parents: 12
diff changeset
576 add_custom_target(generate_headers ALL DEPENDS ${interfaces_list})
4faee409a98d Disable SINGLE_D_OBJECT option for ldc compiler.
SokoL_SD
parents: 12
diff changeset
577 endif(GENERATE_DI_FILES)
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
578
42
eb3b5bbffc8f CMake: generator is not running multiple times.
SokoL_SD
parents: 39
diff changeset
579 add_subdirectory(generator)
27
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
580 ## Dependences.
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
581 foreach(package ${packages})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
582 add_dependencies(cpp_${package} dgen)
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
583 endforeach(package ${packages})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
584 add_sources_for_generating(${files_for_gen})
a9626891eca6 CMake: generator will work only for needed packages.
SokoL_SD
parents: 24
diff changeset
585
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
586 set(CPACK_COMPONENTS_ALL qtd)
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
587
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
588
7
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
589 ##--------------------------------------------
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
590 ## Build other parts of the QtD.
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
591 ##--------------------------------------------
b8a79f9fba5a More fixes and cleanups in CMake build script.
SokoL_SD
parents: 5
diff changeset
592 if(BUILD_EXAMPLES)
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
593 add_subdirectory(demos)
0a29ce1ae854 CMake build script.
SokoL_SD
parents: 1
diff changeset
594 add_subdirectory(examples)
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
595 endif(BUILD_EXAMPLES)
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
596
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
597
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
598
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
599 ##--------------------------------------------
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
600 ## CPack.
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
601 ##--------------------------------------------
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
602 set(CPACK_PACKAGE_VERSION_PATCH 1)
55
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
603 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "QtD is a D binding to the Qt application and UI framework.
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
604 QtD is a D binding to the Qt application and UI framework.
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
605 This package installs binding and static library for qt port on D programming language.
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
606 ")
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
607 #SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/ReadMe.txt")
63c31e221118 CMake: Add forgotten files to install.
SokoL_SD
parents: 51
diff changeset
608 SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/license.txt")
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
609 set(CPACK_PACKAGE_VENDOR "QtD team")
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
610 set(CPACK_PACKAGE_CONTACT "e@mail.ru" )
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
611 SET(CPACK_PACKAGE_VERSION "0.1")
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
612 #set(CPACK_PACKAGE_VERSION_PATCH "${RFS_VERSION_BUILD}")
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
613 set(CPACK_PACKAGE_INSTALL_DIRECTORY "qtd ${CPACK_PACKAGE_VERSION}")
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
614 set(CPACK_PACKAGE_FILE_NAME "qtd-${CPACK_PACKAGE_VERSION}")
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
615 set(CPACK_SOURCE_PACKAGE_FILE_NAME "qtd-${CPACK_PACKAGE_VERSION}")
17
SokoL_SD
parents: 16
diff changeset
616 if(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
SokoL_SD
parents: 16
diff changeset
617 set(CPACK_GENERATOR "ZIP")
24
ebdd676d0b60 CMake: Add *_enum.di to install.
SokoL_SD
parents: 23
diff changeset
618 elseif(${CMAKE_SYSTEM_NAME} STREQUAL Linux)
17
SokoL_SD
parents: 16
diff changeset
619 set(CPACK_GENERATOR "TBZ2;DEB;RPM")
SokoL_SD
parents: 16
diff changeset
620 endif(${CMAKE_SYSTEM_NAME} STREQUAL Windows)
16
6faf3d3cb95e CMake: implement install and package targets.
SokoL_SD
parents: 13
diff changeset
621 include(CPack)