forked from overdesigned/RenderPipelineShaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
480 lines (402 loc) · 18.8 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
# Copyright (c) 2024 Advanced Micro Devices, Inc.
#
# This file is part of the AMD Render Pipeline Shaders SDK which is
# released under the MIT LICENSE.
#
# See file LICENSE.txt for full license details.
cmake_minimum_required(VERSION 3.12.1)
# setting cache variables and options should never overwrite normal variables;
# otherwise, user settings set before including rps as a subdirectory can be overwritten.
cmake_policy(SET CMP0126 NEW)
cmake_policy(SET CMP0077 NEW)
option( RpsBuildTests "Enable unit test targets" ON )
option( RpsBuildTools "Enable tool targets" ON )
option( RpsBuildExamples "Enable example targets" ON )
option( RpsEnableVulkan "Enable Vulkan backend" ON )
option( RpsEnableImGui "Enable ImGui" ON)
option( RpsEnableDXAgilitySDK "Enable DX12 Agility SDK" OFF )
option( RpsPackagingIncludeStaticLibs "Include prebuilt static libs during packaging" OFF )
option( RpsEnableDefaultDeviceImpl "Enable default allocator & printer support" ON )
if ( "${CMAKE_GENERATOR_PLATFORM}" STREQUAL "" )
project( "rps" )
else ( )
message( STATUS "Generator platform: ${CMAKE_GENERATOR_PLATFORM}" )
project( "rps_${CMAKE_GENERATOR_PLATFORM}" )
endif ( )
set( NugetPackagesRoot "${CMAKE_BINARY_DIR}/rps_nuget_packages" )
set( DXAgilitySDK_VERSION_STRING "1.613.0" )
set( DXAgilitySDK_VERSION 613 ) # to set D3D12SDKVersion
set( DXAgilitySDK_INSTALL_DIR "${NugetPackagesRoot}/DXAgilitySDK.${DXAgilitySDK_VERSION_STRING}" )
set( RpsDXAgilitySDK_DIR "${DXAgilitySDK_INSTALL_DIR}" CACHE STRING "DX12 Agility SDK directory" )
set( RpsRootSolutionFolder "" CACHE STRING "Root IDE solution folder" )
set( RpsImGui_DIR "${PROJECT_SOURCE_DIR}/external/imgui" CACHE STRING "ImGui source directory" )
set( RpsDXC_DIR "" CACHE STRING "The specified directory is expected to contain dxcompiler.dll and dxil.dll" )
if ( "${CMAKE_GENERATOR_PLATFORM}" STREQUAL "Arm64" )
set( RpsEnableVulkan OFF )
endif ( )
if ( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" )
set( RpsOsLinux TRUE )
endif ( )
if ( RpsEnableVulkan )
find_package( Vulkan 1.2 )
endif ( )
if ( NOT WIN32 )
set( RpsEnableDXAgilitySDK OFF )
endif()
if ( CMAKE_SIZEOF_VOID_P EQUAL 8 )
set( RPS_X64 ON )
elseif ( CMAKE_SIZEOF_VOID_P EQUAL 4 )
set( RPS_X86 ON)
endif()
include( tools/utils.cmake )
# JIT only supports win64 for now
set ( RpsJITSupported FALSE )
if ( WIN32 AND RPS_X64 )
set ( RpsJITSupported TRUE )
endif ( )
if ( RpsEnableDXAgilitySDK )
set( DX12AgilitySDK_INCLUDE_DIR "${RpsDXAgilitySDK_DIR}/build/native/include" )
# fallback.
if ( (NOT "${RpsDXAgilitySDK_DIR}" STREQUAL "${DXAgilitySDK_INSTALL_DIR}") AND (NOT EXISTS "${DX12AgilitySDK_INCLUDE_DIR}") )
set( DX12AgilitySDK_DIR "${DXAgilitySDK_INSTALL_DIR}/build/native" )
set( DX12AgilitySDK_INCLUDE_DIR "${DX12AgilitySDK_DIR}/include" )
message( WARNING "Unable to find DXAgilitySDK at ${RpsDXAgilitySDK_DIR}. Falling back to ${DXAgilitySDK_INSTALL_DIR}" )
else()
set( DX12AgilitySDK_DIR "${RpsDXAgilitySDK_DIR}/build/native" )
endif()
# acquire agility SDK available if not available.
if( NOT EXISTS "${DX12AgilitySDK_INCLUDE_DIR}" )
message( STATUS "Unable to find DX12AgilitySDK_INCLUDE_DIR at ${DX12AgilitySDK_INCLUDE_DIR}" )
message( STATUS "Attempting to install DXAgilitySDK to ${DXAgilitySDK_INSTALL_DIR}" )
# check internet connection.
if( WIN32 )
set ( PingCountArg "-n" )
else()
set ( PingCountArg "-c" )
endif()
execute_process(
COMMAND ping www.amd.com ${PingCountArg} 2 -w 1000
ERROR_QUIET
OUTPUT_QUIET
RESULT_VARIABLE PING_STATUS
)
# download agility sdk.
if ( PING_STATUS GREATER 0 )
set ( RpsEnableDXAgilitySDK OFF ) # NOTE: this shadows cache var.
message( WARNING "Cannot download DXAgilitySDK as no internet connection. Unsetting RpsEnableDXAgilitySDK." )
else()
set( DXAgilitySDK_DOWNLOAD_URL "https://www.nuget.org/api/v2/package/Microsoft.Direct3D.D3D12/${DXAgilitySDK_VERSION_STRING}" )
message( STATUS "Downloading DXAgilitySDK from ${DXAgilitySDK_DOWNLOAD_URL} ..." )
file( MAKE_DIRECTORY "${DXAgilitySDK_INSTALL_DIR}" )
file( DOWNLOAD "${DXAgilitySDK_DOWNLOAD_URL}" "${DXAgilitySDK_INSTALL_DIR}.zip" )
message( VERBOSE "Extracting ${DXAgilitySDK_INSTALL_DIR}.zip to ${DXAgilitySDK_INSTALL_DIR} ..." )
execute_process(
COMMAND ${CMAKE_COMMAND} "-E" "tar" "xvz" "${DXAgilitySDK_INSTALL_DIR}.zip"
WORKING_DIRECTORY "${DXAgilitySDK_INSTALL_DIR}"
OUTPUT_QUIET
ERROR_VARIABLE DX12AgilitySDK_ERROR
)
message( VERBOSE "Cleaning ${DXAgilitySDK_INSTALL_DIR}.zip ..." )
# cleanup temp folder
file( REMOVE_RECURSE "${DXAgilitySDK_INSTALL_DIR}.zip" )
if ( "${DX12AgilitySDK_ERROR}" STREQUAL "" )
message( STATUS "Successfully installed DXAgilitySDK to ${DXAgilitySDK_INSTALL_DIR}" )
message( STATUS "DX12AgilitySDK_INCLUDE_DIR = ${DX12AgilitySDK_INCLUDE_DIR}")
else()
set ( RpsEnableDXAgilitySDK OFF ) # NOTE: this shadows cache var.
message( WARNING "Unsetting RpsEnableDXAgilitySDK. DXAgilitySDK install failed with: ${DX12AgilitySDK_ERROR}" )
endif()
endif()
else()
message( STATUS "DX12AgilitySDK_INCLUDE_DIR = ${DX12AgilitySDK_INCLUDE_DIR}" )
endif()
endif( )
set_property( GLOBAL PROPERTY USE_FOLDERS ON )
if ( MSVC )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /UMBCS /WX" )
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-private-field" )
endif()
elseif( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror -Wno-unused-variable -Wno-unused-private-field" )
endif ( )
if (WIN32 AND "$ENV{CXXFLAGS}" MATCHES "-fsanitize=address" )
message( STATUS "ASAN enabled. Disabling SEH" )
add_definitions( -DCATCH_CONFIG_NO_WINDOWS_SEH )
endif( )
if ( RpsEnableImGui AND (CMAKE_SIZEOF_VOID_P LESS 8) )
add_definitions( -DImTextureID=ImU64 )
endif( )
if ( NOT RpsEnableDefaultDeviceImpl )
add_definitions( -DRPS_ENABLE_DEFAULT_DEVICE_IMPL=0 )
endif( )
include( CheckIncludeFiles )
function( CheckIncludeFilesAndAddDefinition IncludeFileName DefinitionName )
check_include_files( ${IncludeFileName} IncludeFileFound )
if ( ${IncludeFileFound} )
add_definitions( -D${DefinitionName} )
endif( )
endfunction( )
CheckIncludeFilesAndAddDefinition( intrin.h RPS_HAS_INTRIN_H )
function( TryCompileFileAndAddDefinition TryCompileFileName DefinitionName )
try_compile( TryCompileSucceeded ${CMAKE_CURRENT_BINARY_DIR}/cmake_try_compile ${CMAKE_CURRENT_SOURCE_DIR}/tools/cmake_tests/${TryCompileFileName} )
message( STATUS ${DefinitionName} = ${TryCompileSucceeded} )
if ( ${TryCompileSucceeded} )
add_definitions( -D${DefinitionName} )
endif()
endfunction( )
TryCompileFileAndAddDefinition( has_bitscan.c RPS_HAS_BITSCAN )
TryCompileFileAndAddDefinition( has_builtin_clz_ctz.c RPS_HAS_BUILTIN_CLZ_CTZ )
TryCompileFileAndAddDefinition( has_nodiscard.cpp RPS_HAS_NODISCARD )
TryCompileFileAndAddDefinition( has_maybe_unused.cpp RPS_HAS_MAYBE_UNUSED )
TryCompileFileAndAddDefinition( has_popcnt.c RPS_HAS_POPCNT )
TryCompileFileAndAddDefinition( has_builtin_popcount.c RPS_HAS_BUILTIN_POPCOUNT )
if ( RpsBuildTests )
enable_testing()
endif ( )
# Compile RPSL
if ( WIN32 OR RpsOsLinux )
set( RpsOsSupportsRpslCompiler TRUE )
endif ( )
function( CompileRpslDxc TargetName RpslFileName GeneratedSource OutDirPrefix )
get_filename_component( FileNameWithoutExtension ${RpslFileName} NAME_WE )
set( OutDirectory "${CMAKE_CURRENT_BINARY_DIR}/${TargetName}.tmp/${OutDirPrefix}/" )
# message( STATUS "Rps-hlslc Output Dir: " ${OutDirectory} )
# message( STATUS "Working dir: " ${OutDirectory} )
set( OutputSource ${OutDirectory}${FileNameWithoutExtension}.rpsl.g.c )
string( APPEND RpsCompileOpts
"$<IF:$<CONFIG:DEBUG>,-O0,-O3>")
if ( WIN32 )
set( RpsCompilerBinaryDir "${PROJECT_SOURCE_DIR}/tools/rps_hlslc/win-x64/" )
set( RpsHlslcDxcompilerLib "${RpsCompilerBinaryDir}/dxcompiler.dll" )
set( ExecPostfix ".exe" )
elseif ( RpsOsLinux )
set( RpsCompilerBinaryDir "${PROJECT_SOURCE_DIR}/tools/rps_hlslc/linux-x64/bin" )
set( RpsHlslcDxcompilerLib "${RpsCompilerBinaryDir}/../lib/libdxcompiler.so" )
else ( )
message( SEND_ERROR "Unsupported OS" )
endif ( )
set( RpsHlslcExec "${RpsCompilerBinaryDir}/rps-hlslc${ExecPostfix}" )
set( RpsLlvmCbeExec "${RpsCompilerBinaryDir}/llvm-cbe${ExecPostfix}" )
file( MAKE_DIRECTORY ${OutDirectory} )
add_custom_command(
OUTPUT ${OutputSource}
COMMAND "${RpsHlslcExec}" "${RpslFileName}" -od "${OutDirectory}" -m ${FileNameWithoutExtension} ${RpsCompileOpts}
COMMAND ${CMAKE_COMMAND} -E echo "Compiling RPSL ${RpslFileName} : '${RpsHlslcExec} ${RpslFileName} -od ${OutDirectory} -m ${FileNameWithoutExtension} ${RpsCompileOpts}'"
WORKING_DIRECTORY ${OutDirectory}
DEPENDS ${RpslFileName} "${RpsHlslcExec}" "${RpsHlslcDxcompilerLib}" "${RpsLlvmCbeExec}"
VERBATIM )
set( ${GeneratedSource} "${OutputSource}" PARENT_SCOPE )
endfunction()
# Copy assets
function( CopyShaders TargetName ShaderFiles SrcFolder )
foreach( Shader ${ShaderFiles} )
message( STATUS "Copy Shader: ${Shader} => $<TARGET_FILE_DIR:${TargetName}>" )
add_custom_command( TARGET ${TargetName} PRE_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${Shader}" "$<TARGET_FILE_DIR:${TargetName}>" )
endforeach()
endfunction()
if ( RpsEnableVulkan )
FindSpirvTools( SPIRV_DXCOMPILER_DLL )
CheckFindFile( SPIRV_DXCOMPILER_DLL ${SPIRV_DXCOMPILER_DLL} )
function( CopySpirvDXC TargetName )
add_custom_command(
TARGET ${TargetName} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${SPIRV_DXCOMPILER_DLL}
$<TARGET_FILE_DIR:${TargetName}>/spirv_dxc/dxcompiler.dll)
endfunction()
endif()
if ( WIN32 )
FindDXC( DXCOMPILER_DLL DXIL_DLL )
CheckFindFile( DXCOMPILER_DLL ${DXCOMPILER_DLL} )
CheckFindFile( DXIL_DLL ${DXIL_DLL} )
function( CopyDXC TargetName )
add_custom_command(
TARGET ${TargetName} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${DXCOMPILER_DLL}
$<TARGET_FILE_DIR:${TargetName}>)
add_custom_command(
TARGET ${TargetName} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${DXIL_DLL}
$<TARGET_FILE_DIR:${TargetName}>)
endfunction()
function( CopyJITCompiler TargetName )
#x64 only for now
if( RPS_X64 )
add_custom_command(
TARGET ${TargetName} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${PROJECT_SOURCE_DIR}/tools/rps_hlslc/win-x64/rps-jit.dll
$<TARGET_FILE_DIR:${TargetName}>)
# TODO: For now we need rps-hlslc.exe to compile rpsl to bitcode.
# Should allow dxcompiler.dll handle this.
add_custom_command(
TARGET ${TargetName} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${PROJECT_SOURCE_DIR}/tools/rps_hlslc/win-x64/rps-hlslc.exe
$<TARGET_FILE_DIR:${TargetName}>/rps_hlslc/rps-hlslc.exe)
add_custom_command(
TARGET ${TargetName} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${PROJECT_SOURCE_DIR}/tools/rps_hlslc/win-x64/dxcompiler.dll
$<TARGET_FILE_DIR:${TargetName}>/rps_hlslc/dxcompiler.dll)
# ensures dxil.dll is present.
CopyDXC( ${TargetName} )
endif()
endfunction()
function( CopyDX12AgilitySDKBinaries TargetName )
if ( RpsEnableDXAgilitySDK )
if( RPS_X64 )
set( AgilitySDKPlatformName x64 )
elseif( RPS_X86 )
set( AgilitySDKPlatformName win32 )
endif()
foreach( BinaryToCopy D3D12Core.dll D3D12SDKLayers.dll )
add_custom_command(
TARGET ${TargetName} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${DX12AgilitySDK_DIR}/bin/${AgilitySDKPlatformName}/${BinaryToCopy}
$<TARGET_FILE_DIR:${TargetName}>/D3D12/${BinaryToCopy} )
endforeach()
endif()
endfunction()
endif() # end if ( WIN32 )
# Adding a library module from the ./src/${ModuleName} folder
function( AddModule ModuleName ModuleFolder SrcFolder SrcInclude CompileFlags CompileDefinitions LibType LinkLibs )
file( GLOB_RECURSE HeaderFiles
"${ModuleFolder}/*.h"
"${ModuleFolder}/*.hpp"
"${ModuleFolder}/*.inl" )
file( GLOB_RECURSE SourceFiles
"${ModuleFolder}/*.c"
"${ModuleFolder}/*.cpp" )
source_group( TREE "${ModuleFolder}/" FILES ${HeaderFiles} ${SourceFiles} )
if ( SourceFiles )
add_library( ${ModuleName} ${LibType} ${HeaderFiles} ${SourceFiles} )
target_include_directories( ${ModuleName} PRIVATE ${PROJECT_SOURCE_DIR}/include/ ${PROJECT_SOURCE_DIR}/src/ ${SrcInclude} )
else ( )
set(ModuleName ${ModuleName}.headers)
add_custom_target( ${ModuleName} SOURCES ${HeaderFiles} )
endif ( )
if( CompileDefinitions )
set_target_properties( ${ModuleName} PROPERTIES COMPILE_DEFINITIONS "${CompileDefinitions}")
endif( )
if ( CompileFlags )
set_target_properties( ${ModuleName} PROPERTIES COMPILE_FLAGS "${CompileFlags}")
endif ( )
if ( SrcFolder )
set_target_properties( ${ModuleName} PROPERTIES FOLDER "${SrcFolder}")
endif ( )
if ( LinkLibs )
target_link_libraries( ${ModuleName} PRIVATE ${LinkLibs} )
endif ( )
endfunction( )
# Adding a library module from the ./src/${ModuleName} folder without recursion
function( AddModuleNoRecurse ModuleName ModuleFolder SrcFolder SrcInclude CompileFlags LibType )
file( GLOB HeaderFiles
"${ModuleFolder}/*.h"
"${ModuleFolder}/*.hpp"
"${ModuleFolder}/*.inl" )
file( GLOB SourceFiles
"${ModuleFolder}/*.c"
"${ModuleFolder}/*.cpp" )
source_group( TREE "${ModuleFolder}/" FILES ${HeaderFiles} ${SourceFiles} )
if ( SourceFiles )
add_library( ${ModuleName} ${LibType} ${HeaderFiles} ${SourceFiles} )
target_include_directories( ${ModuleName} PRIVATE ${PROJECT_SOURCE_DIR}/include/ ${PROJECT_SOURCE_DIR}/src/ ${SrcInclude} )
else ( )
add_library( ${ModuleName} INTERFACE )
add_custom_target( ${ModuleName}.headers SOURCES ${HeaderFiles} )
target_include_directories( ${ModuleName} INTERFACE ${PROJECT_SOURCE_DIR}/src/ )
endif ( )
if ( CompileFlags )
set_target_properties( ${ModuleName} PROPERTIES COMPILE_FLAGS "${CompileFlags}")
endif ( )
if ( SrcFolder )
set_target_properties( ${ModuleName} PROPERTIES FOLDER "${SrcFolder}")
endif ( )
endfunction( )
if(${CMAKE_VERSION} VERSION_LESS "3.16.0")
message( WARNING "Current CMake version doesn't support VS_DPI_AWARE. Consider update to 3.16.0 or newer")
endif()
# Adding a sample project
function( AddCppApp AppName AppFolder SrcFolder SrcSharedFolder SrcInclude CompileFlags DependenciesString )
file( GLOB_RECURSE SourceFiles
"${SrcFolder}/*.h"
"${SrcFolder}/*.hpp"
"${SrcFolder}/*.inl"
"${SrcFolder}/*.c"
"${SrcFolder}/*.cpp" )
source_group( TREE "${SrcFolder}/" FILES ${SourceFiles} )
file (GLOB_RECURSE ShaderFiles
"${SrcFolder}/*.hlsl"
"${SrcFolder}/*.glsl"
"${SrcFolder}/*.dxbc"
"${SrcFolder}/*.spv"
"${SrcFolder}/*.frag"
"${SrcFolder}/*.vert"
"${SrcFolder}/*.spv" )
source_group( TREE "${SrcFolder}/" PREFIX "shaders" FILES ${ShaderFiles} )
if ( SrcSharedFolder )
file( GLOB_RECURSE SourceSharedFiles
"${SrcSharedFolder}/*_shared.hpp" )
source_group( TREE "${SrcSharedFolder}/" PREFIX "shared" FILES ${SourceSharedFiles} )
if ( ${AppName} MATCHES "rpsl" )
file( GLOB_RECURSE RpslFiles
"${SrcSharedFolder}/*.rpsl" )
source_group( TREE "${SrcSharedFolder}/" PREFIX "rpsl" FILES ${RpslFiles} )
endif( )
set( GeneratedSources "" )
foreach( RpslFileName ${RpslFiles} )
message( STATUS "Found Rpsl: " ${RpslFileName} )
CompileRpslDxc( ${AppName} ${RpslFileName} RpslOutputSource "Generated")
set( GeneratedSources ${GeneratedSources} ${RpslOutputSource} )
endforeach()
source_group( TREE "${CMAKE_CURRENT_BINARY_DIR}/${AppName}/Generated/" PREFIX "rps_generated" FILES ${GeneratedSources} )
endif( )
set_source_files_properties( ${ShaderFiles} PROPERTIES VS_COPY_TO_OUT_DIR "Always" VS_TOOL_OVERRIDE "Content" )
add_executable( ${AppName} WIN32 ${SourceFiles} ${ShaderFiles} ${RpslFiles} ${GeneratedSources} ${SourceSharedFiles} )
CopyShaders( ${AppName} "${ShaderFiles}" "${SrcFolder}" )
target_include_directories( ${AppName} PRIVATE
${PROJECT_SOURCE_DIR}/include/
${PROJECT_SOURCE_DIR}/src/
${SrcFolder}/
${SrcInclude}
)
set( DependencyList ${DependenciesString} )
target_link_libraries( ${AppName} ${DependencyList} )
if ( ${CompileFlags} MATCHES "CONSOLE" )
message(${AppName})
set( LinkFlags /SUBSYSTEM:CONSOLE )
endif( )
set_target_properties( ${AppName} PROPERTIES
VS_DEBUGGER_WORKING_DIRECTORY "${SrcFolder}"
COMPILE_FLAGS "${CompileFlags}"
FOLDER "${AppFolder}"
LINK_FLAGS "${LinkFlags}"
VS_DPI_AWARE "PerMonitor"
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${AppName}")
endfunction()
function( AddSampleApps AppNames Variant Platform SrcInclude CompileFlags CompileDefinitions DependenciesString )
foreach(AppName ${AppNames})
AddCppApp( ${AppName}${Variant}_${Platform} "samples/${Platform}" ${PROJECT_SOURCE_DIR}/samples/${Platform}/${AppName} ${PROJECT_SOURCE_DIR}/samples/shared/${AppName} "${SrcInclude}" ${CompileFlags} "${DependenciesString}" )
endforeach()
endfunction()
set ( FullSource TRUE )
# Common for full or limited source
BuildFolderProperty( "modules" ModuleFolder )
AddModule( rps ${PROJECT_SOURCE_DIR}/include "${ModuleFolder}" "" "" "${CompileDefinitions}" INTERFACE "" )
add_subdirectory( src )
add_subdirectory( external )
if ( RpsBuildTests )
add_subdirectory( "${CMAKE_CURRENT_SOURCE_DIR}/tests" )
endif ( )
if ( RpsBuildTools )
add_subdirectory( tools )
endif ( )
if ( RpsBuildExamples )
add_subdirectory( examples )
endif ( )