Place executables in the bin dir

This commit is contained in:
Victor Zverovich 2015-03-01 16:07:18 -08:00
parent 67089022bf
commit 07754c047c
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -3,9 +3,7 @@
/doc/doxyxml /doc/doxyxml
/doc/html /doc/html
/Testing /Testing
/*-test
/install_manifest.txt /install_manifest.txt
/tinyformat_speed_test
*~ *~
*.a *.a
*.zip *.zip

View File

@ -16,6 +16,8 @@ project(FORMAT)
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}") message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
include(CheckCXXCompilerFlag) include(CheckCXXCompilerFlag)
check_cxx_compiler_flag(-std=c++11 HAVE_STD_CPP11_FLAG) check_cxx_compiler_flag(-std=c++11 HAVE_STD_CPP11_FLAG)
if (HAVE_STD_CPP11_FLAG) if (HAVE_STD_CPP11_FLAG)