[CMake] Output run-time files to single directory

2009-09-29 Thread Mateusz Loskot
Hi, I'm using CMake 2.6 on Linux and Windows. I'm migrating a not-so-big project from autotools to CMake, for both Linux (GCC) and Window (MSVC). The structure is simple: proj/ proj/src - build as shared and static libs proj/app - executables linking to shared and static libs On Linux, everythin

Re: [CMake] Output run-time files to single directory

2009-09-29 Thread Michael Jackson
# -- Setup output Directories - SET (CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/Bin ) # - Setup the Executable output Directory - SET (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/Bin ) # - Setup the Executable out

Re: [CMake] Output run-time files to single directory

2009-10-01 Thread Mateusz Loskot
Michael Jackson wrote: > # -- Setup output Directories - > SET (CMAKE_LIBRARY_OUTPUT_DIRECTORY > ${PROJECT_BINARY_DIR}/Bin ) > > # - Setup the Executable output Directory - > SET (CMAKE_RUNTIME_OUTPUT_DIRECTORY > ${PROJECT_BINARY_DIR}/Bin ) >