diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-06-07 03:55:46 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-06-07 03:55:46 +0200 |
commit | 29857b87efdec4ed6a4adb8162d2428460eec53a (patch) | |
tree | 0738b0504e1c9ce42cc5f5455ee34552576ee6cc /cmake | |
parent | a1ee9c7a2ebc5d450a7428c8f8d7ab6864cb9497 (diff) |
cmake: cleanup
We now inherit parent process' console. No need for
the cmake cache option.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/opentrack-boilerplate.cmake | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cmake/opentrack-boilerplate.cmake b/cmake/opentrack-boilerplate.cmake index 7052e704..24771e44 100644 --- a/cmake/opentrack-boilerplate.cmake +++ b/cmake/opentrack-boilerplate.cmake @@ -60,9 +60,6 @@ function(otr_fixup_subsystem n) if(MSVC) set(subsystem WINDOWS) get_property(type TARGET "${n}" PROPERTY TYPE) - if(SDK_CONSOLE_DEBUG AND ".${type}" STREQUAL ".EXECUTABLE") - set(subsystem CONSOLE) - endif() set(loc "$<TARGET_FILE:${n}>") if (NOT type STREQUAL "STATIC_LIBRARY") add_custom_command(TARGET "${n}" @@ -274,7 +271,6 @@ function(otr_prop type) else() set(spc " ") endif() - set_property("${type}" "${f}" APPEND_STRING PROPERTY "${name}" "${spc}${value}") endwhile() endforeach() |