aboutsummaryrefslogtreecommitdiff
path: root/samples/compiler/cmake/windows/SampleBase.cmake
blob: 48eef00e29e170f533f97b6d3d85fdedad98d73e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Build SampleBase Windows
#

SET(SAMPLEBASE_PLATFORM_COMMON_FILES
)

SET(SAMPLEBASE_PLATFORM_INCLUDES
)

SET(SAMPLEBASE_COMPILE_DEFS
	# Common to all configurations
	${SAMPLES_SLN_COMPILE_DEFS}
	
	$<$<CONFIG:debug>:${SAMPLES_SLN_DEBUG_COMPILE_DEFS}>
	$<$<CONFIG:checked>:${SAMPLES_SLN_CHECKED_COMPILE_DEFS}>
	$<$<CONFIG:profile>:${SAMPLES_SLN_PROFILE_COMPILE_DEFS}>
	$<$<CONFIG:release>:${SAMPLES_SLN_RELEASE_COMPILE_DEFS}>
)

SET(SAMPLEBASE_ADDITIONAL_DLLS "")