Re: [CMake] Specifying separate paths for .lib and .dll files on Windows

2010-05-31 Thread Prashanth Udupa
Sorry, I think I sent this question too soon... The following constructs did the trick for me.. SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/lib CACHE PATH "Directory where all the .lib files are dumped." FORCE) SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJ

[CMake] Specifying separate paths for .lib and .dll files on Windows

2010-05-31 Thread Prashanth Udupa
Hi, I have a library project that I am generating the build system for using CMake. I would like to have the .lib file generated in one directory and the .dll file in another directory. Right now I am using a construct as follows SET(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin CACHE PAT