Set the CMAKE_RUNTIME_OUTPUT_DIRECTORY for windows builds.

This commit is contained in:
Stephen Kelly 2011-08-10 21:01:42 +02:00
parent 61726f867e
commit af443b830b
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,8 @@ macro(_do_build Include Library LibrarySource Source)
"set(CMAKE_INCLUDE_CURRENT_DIR ON)\n"
"set(CMAKE_RUNTIME_OUTPUT_DIRECTORY \${CMAKE_CURRENT_BINARY_DIR})\n"
"include(GenerateExportHeader)\n"
"add_compiler_export_flags()\n"
@ -111,6 +113,8 @@ if (MSVC)
add_definitions(-DCOMPILER_IS_MSVC)
endif()
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
set(link_libraries)
macro(macro_add_test_library name)
add_subdirectory(${name})