summaryrefslogtreecommitdiffstats
path: root/unityplugin/GhostCubeScene
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2017-12-14 04:04:39 +0000
committerEgor Yusov <egor.yusov@gmail.com>2017-12-14 04:04:39 +0000
commitfe150555cb15e905b080ce7e85a20fdcb01e9259 (patch)
treeb21ff8f63930b7a4515b34683d7e89ba49744403 /unityplugin/GhostCubeScene
parentAdding UWP to CMake (in progress) (diff)
downloadDiligentEngine-fe150555cb15e905b080ce7e85a20fdcb01e9259.tar.gz
DiligentEngine-fe150555cb15e905b080ce7e85a20fdcb01e9259.zip
Optimized CMake files with set_common_target_properties()
Diffstat (limited to 'unityplugin/GhostCubeScene')
-rw-r--r--unityplugin/GhostCubeScene/CMakeLists.txt8
1 files changed, 1 insertions, 7 deletions
diff --git a/unityplugin/GhostCubeScene/CMakeLists.txt b/unityplugin/GhostCubeScene/CMakeLists.txt
index aa7860c..cdf461d 100644
--- a/unityplugin/GhostCubeScene/CMakeLists.txt
+++ b/unityplugin/GhostCubeScene/CMakeLists.txt
@@ -59,18 +59,12 @@ PRIVATE
UnityEmulator
TargetPlatform
)
+set_common_target_properties(GhostCubeScene)
if(MSVC)
# Disable MSVC-specific warnings
# - w4201: nonstandard extension used: nameless struct/unio
target_compile_options(GhostCubeScene PRIVATE /wd4201)
- # Enable link-time code generation for release builds (I was not able to
- # find any way to set these settings through interface library BuildSettings)
- set_target_properties(GhostCubeScene PROPERTIES
- LINK_FLAGS_RELEASE /LTCG
- LINK_FLAGS_MINSIZEREL /LTCG
- LINK_FLAGS_RELWITHDEBINFO /LTCG
- )
endif()
source_group("src" FILES ${SOURCE})