From a056a68e5ba169b84a5c7cc6f13836cc570f73ae Mon Sep 17 00:00:00 2001 From: Sergey Yagovtsev Date: Mon, 21 Mar 2016 06:22:48 +0300 Subject: [PATCH] Set output dir for archives --- CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7fd156e..ad19708 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,6 +18,10 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${OUTPUT_DIR} ) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY + ${OUTPUT_DIR} +) + include_directories( include ) @@ -31,8 +35,6 @@ else() ) endif(UNIX) - - add_subdirectory(src) add_subdirectory(sample) -add_subdirectory(reader) \ No newline at end of file +add_subdirectory(reader)