diff options
Diffstat (limited to 'cmake/compiler/msvc')
-rw-r--r-- | cmake/compiler/msvc/settings.cmake | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cmake/compiler/msvc/settings.cmake b/cmake/compiler/msvc/settings.cmake index 4858aa242e6..b7f67874329 100644 --- a/cmake/compiler/msvc/settings.cmake +++ b/cmake/compiler/msvc/settings.cmake @@ -1,6 +1,3 @@ -# set up output paths for executable binaries (.exe-files, and .dll-files on DLL-capable platforms) -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) - set(MSVC_EXPECTED_VERSION 19.32) set(MSVC_EXPECTED_VERSION_STRING "Microsoft Visual Studio 2022 17.2") @@ -31,10 +28,6 @@ target_compile_options(trinity-compile-option-interface INTERFACE /permissive-) -# set up output paths ofr static libraries etc (commented out - shown here as an example only) -#set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) -#set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) - if(PLATFORM EQUAL 64) # This definition is necessary to work around a bug with Intellisense described # here: http://tinyurl.com/2cb428. Syntax highlighting is important for proper @@ -59,7 +52,6 @@ else() message(STATUS "MSVC: Disabled Safe Exception Handlers for debug builds") endif() -# msbuild/devenv don't set CMAKE_MAKE_PROGRAM, you can choose build type from a dropdown after generating projects if("${CMAKE_MAKE_PROGRAM}" MATCHES "MSBuild") # multithreaded compiling on VS target_compile_options(trinity-compile-option-interface |