-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
217 lines (174 loc) · 7.65 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
cmake_minimum_required(VERSION 3.5)
project(Windows-CalcEngine VERSION 1.0.33 LANGUAGES CXX)
set(target_name ${PROJECT_NAME})
#set( target_name Windows-CalcEngine )
set (CMAKE_CXX_STANDARD 17)
option(USE_PARALLEL_ALGORITHMS "Use parallel algorithms for STL operations" ON)
if(USE_PARALLEL_ALGORITHMS)
add_compile_definitions(USE_PARALLEL_ALGORITHMS)
endif()
include( cmake/WCEProjectMacros.cmake )
include( cmake/WCEInternalUtils.cmake )
include( cmake/WCECompilerFlags.cmake )
# google test will not be created by this project if this is not main project. Main project is expected to handle google test.
get_directory_property(hasParent PARENT_DIRECTORY)
if(hasParent)
set( BUILD_WCE_TESTING OFF )
set( DOWNLOAD_GTEST OFF )
#if( BUILD_TESTING STREQUAL ON ) # EnergyPlus testing is ON
# set( BUILD_WCE_TESTING ON )
#endif()
set( SINGLE_PROJECT ON )
# If external project requested part of Windows-CalcEngine, then do not compile it as single project but as those parts
if( BUILD_WCE_COMMON OR BUILD_WCE_GASES OR BUILD_WCE_THERMAL OR BUILD_WCE_OPTICAL )
#set( SINGLE_PROJECT OFF )
else()
# Nothing has been set from outside project. Compile complete project in that case.
set( BUILD_WCE_COMMON ON )
set( BUILD_WCE_GASES ON )
set( BUILD_WCE_VIEWER ON )
set( BUILD_WCE_THERMAL ON )
set( BUILD_WCE_OPTICAL ON )
endif()
else()
option( BUILD_WCE_TESTING "Build testing targets" ON )
option( SINGLE_PROJECT "Build windows library as single project" OFF )
option( BUILD_WCE_COMMON "Build Common Library" ON )
option( BUILD_WCE_GASES "Build Gas Calculations Library" ON )
option( BUILD_WCE_VIEWER "Build Viewer Calculation Library" ON )
option( BUILD_WCE_THERMAL "Build Thermal Calculations Library" ON )
option( BUILD_WCE_OPTICAL "Build Optical Calculations Library" ON )
set( DOWNLOAD_GTEST ON )
endif()
if( ${BUILD_WCE_GASES} )
set( BUILD_WCE_COMMON ON )
endif()
if( ${BUILD_WCE_THERMAL} )
set( BUILD_WCE_COMMON ON )
set( BUILD_WCE_GASES ON )
set( BUILD_WCE_VIEWER ON )
endif()
if( ${BUILD_WCE_OPTICAL} )
set( BUILD_WCE_COMMON ON )
set( BUILD_WCE_VIEWER ON )
endif()
if( DOWNLOAD_GTEST STREQUAL ON ) # Do not need gtest since it will be processed by E+
# include(CMakeLists-GTest.txt)
configure_file(CMakeLists.txt.in ${CMAKE_CURRENT_BINARY_DIR}/googletest-download/CMakeLists.txt)
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download )
execute_process(COMMAND ${CMAKE_COMMAND} --build .
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download )
# Prevent GoogleTest from overriding our compiler/linker options
# when building with Visual Studio
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
# Add googletest directly to our build. This adds
# the following targets: gtest, gtest_main, gmock
# and gmock_main
add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/googletest-src
${CMAKE_CURRENT_BINARY_DIR}/googletest-build)
# Now simply link your own targets against gtest, gmock,
# etc. as appropriate
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/googletest-src/include )
endif ()
# foreach( _variableName ${SOURCES})
# message( STATUS "${_variableName}" )
# endforeach()
if( NOT ${SINGLE_PROJECT} )
if( ${BUILD_WCE_TESTING})
include_directories( src/helper )
endif()
add_subdirectory( src )
else()
if( ${BUILD_WCE_COMMON} )
file( GLOB SOURCES_CPP "src/Common/src/*.cpp" )
file( GLOB SOURCES_HPP "src/Common/src/*.hpp" )
LIST(APPEND SOURCES ${SOURCES_HPP} ${SOURCES_CPP})
endif()
if( ${BUILD_WCE_GASES} )
file( GLOB SOURCES_CPP "src/Gases/src/*.cpp" )
file( GLOB SOURCES_HPP "src/Gases/src/*.hpp" )
LIST(APPEND SOURCES ${SOURCES_HPP} ${SOURCES_CPP})
endif()
if( ${BUILD_WCE_VIEWER} )
file( GLOB SOURCES_CPP "src/Viewer/src/*.cpp" )
file( GLOB SOURCES_HPP "src/Viewer/src/*.hpp" )
LIST(APPEND SOURCES ${SOURCES_HPP} ${SOURCES_CPP})
endif()
if( ${BUILD_WCE_THERMAL} )
file( GLOB SOURCES_CPP "src/Tarcog/src/*.cpp" )
file( GLOB SOURCES_HPP "src/Tarcog/src/*.hpp" )
LIST(APPEND SOURCES ${SOURCES_HPP} ${SOURCES_CPP})
endif()
if( ${BUILD_WCE_OPTICAL} )
file( GLOB SOURCES_CPP "src/SpectralAveraging/src/*.cpp" )
file( GLOB SOURCES_HPP "src/SpectralAveraging/src/*.hpp" )
LIST(APPEND SOURCES ${SOURCES_HPP} ${SOURCES_CPP})
file( GLOB SOURCES_CPP "src/SingleLayerOptics/src/*.cpp" )
file( GLOB SOURCES_HPP "src/SingleLayerOptics/src/*.hpp" )
LIST(APPEND SOURCES ${SOURCES_HPP} ${SOURCES_CPP})
file( GLOB SOURCES_CPP "src/MultiLayerOptics/src/*.cpp" )
file( GLOB SOURCES_HPP "src/MultiLayerOptics/src/*.hpp" )
LIST(APPEND SOURCES ${SOURCES_HPP} ${SOURCES_CPP})
endif()
add_library( ${target_name} STATIC ${SOURCES} )
if( ${BUILD_WCE_COMMON} )
target_include_directories(${target_name} PUBLIC "src/Common/include")
endif()
if( ${BUILD_WCE_GASES} )
target_include_directories(${target_name} PUBLIC "src/Gases/include")
endif()
if( ${BUILD_WCE_VIEWER} )
target_include_directories(${target_name} PUBLIC "src/Viewer/include")
endif()
if( ${BUILD_WCE_THERMAL} )
target_include_directories(${target_name} PUBLIC "src/Tarcog/include")
endif()
if( ${BUILD_WCE_OPTICAL} )
target_include_directories(${target_name} PUBLIC "src/SpectralAveraging/include")
target_include_directories(${target_name} PUBLIC "src/SingleLayerOptics/include")
target_include_directories(${target_name} PUBLIC "src/MultiLayerOptics/include")
endif()
if( BUILD_WCE_TESTING )
include_directories( src/helper )
if( ${BUILD_WCE_COMMON} )
include_directories( src/Common/include )
file( GLOB all_test_src RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "src/Common/tst/units/*.cpp" )
LIST( APPEND test_src ${all_test_src} )
endif()
if( ${BUILD_WCE_VIEWER} )
include_directories( src/Viewer/include )
file( GLOB all_test_src RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "src/Viewer/tst/units/*.cpp" )
LIST( REMOVE_ITEM all_test_src "src/Viewer/tst/units/main.cpp")
LIST( APPEND test_src ${all_test_src} )
endif()
if( ${BUILD_WCE_GASES} )
include_directories( src/Gases/include )
file( GLOB all_test_src RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "src/Gases/tst/units/*.cpp" )
LIST( REMOVE_ITEM all_test_src "src/Gases/tst/units/main.cpp")
LIST( APPEND test_src ${all_test_src} )
endif()
if( ${BUILD_WCE_THERMAL} )
include_directories( src/Tarcog/include )
file( GLOB all_test_src RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "src/Tarcog/tst/units/*.cpp" )
LIST( REMOVE_ITEM all_test_src "src/Tarcog/tst/units/main.cpp")
LIST( APPEND test_src ${all_test_src} )
endif()
if( ${BUILD_WCE_OPTICAL} )
include_directories( src/SpectralAveraging/include )
file( GLOB all_test_src RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "src/SpectralAveraging/tst/units/*.cpp" )
LIST( REMOVE_ITEM all_test_src "src/SpectralAveraging/tst/units/main.cpp")
LIST( APPEND test_src ${all_test_src} )
include_directories( src/SingleLayerOptics/include )
file( GLOB all_test_src RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "src/SingleLayerOptics/tst/units/*.cpp" )
LIST( REMOVE_ITEM all_test_src "src/SingleLayerOptics/tst/units/main.cpp")
LIST( APPEND test_src ${all_test_src} )
include_directories( src/MultiLayerOptics/include )
file( GLOB all_test_src RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "src/MultiLayerOptics/tst/units/*.cpp" )
LIST( REMOVE_ITEM all_test_src "src/MultiLayerOptics/tst/units/main.cpp")
LIST( APPEND test_src ${all_test_src} )
endif()
CREATE_TEST_TARGETS_WCE( ${target_name} "${test_src}" "" )
endif()
endif()
config_compiler_and_linker_wce()