From 9de8276a5fee6d2e3e09577ca339773e5fc7306a Mon Sep 17 00:00:00 2001 From: Dane Johnson Date: Mon, 5 Apr 2021 14:48:31 -0500 Subject: [PATCH] Add install destinations? --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 967616a..3a5b5fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,9 @@ if(WIN32) set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc -static-libstdc++") endif(WIN32) -install(TARGETS couch couchlib couchlib_luascripting) +install(TARGETS couch couchlib couchlib_luascripting + RUNTIME DESTINATION bin + ARCHIVE DESTINATION lib) if (LUA_ENABLED) install(TARGETS couchlua) endif ()