We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19857cd commit 644e42eCopy full SHA for 644e42e
scripts/CMakeLists.txt
@@ -134,11 +134,11 @@ set(LIBRARIES
134
foreach(LIBRARY ${LIBRARIES})
135
configure_file("${LIBRARY}" "${LIBRARY}" @ONLY)
136
137
- install(PROGRAMS "${CMAKE_CURRENT_BINARY_DIR}/${LIBRARY}" DESTINATION "${BIN}" COMPONENT Server)
+ install(PROGRAMS "${CMAKE_CURRENT_BINARY_DIR}/${LIBRARY}" DESTINATION "${LIB}" COMPONENT Server)
138
139
# when running make install, client files will not overwrite server files
140
if (CLIENT)
141
- install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${LIBRARY}" DESTINATION "${BIN}" COMPONENT Client)
+ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${LIBRARY}" DESTINATION "${LIB}" COMPONENT Client)
142
endif()
143
endforeach()
144
0 commit comments