mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
If the user does not specify a DESTINATION for a target type, the install() command checks to see if the appropriate variable from GNUInstallDirs is set. If it is not, then it uses an appropriate hard-coded guess. In addition, for FILES and DIRECTORY, the user can specify a file type instead of a DESTINATION, and the command will use the appropriate variable from GNUInstallDirs, or a hard-coded guess if it is not set.
20 lines
534 B
CMake
20 lines
534 B
CMake
enable_language(C)
|
|
|
|
add_executable(exe main.c)
|
|
add_library(lib1 SHARED obj1.c)
|
|
add_library(lib2 STATIC obj3.c)
|
|
add_library(lib3 SHARED obj4.c)
|
|
set_property(TARGET lib3 PROPERTY PRIVATE_HEADER ${CMAKE_CURRENT_SOURCE_DIR}/obj4.h)
|
|
add_library(lib4 SHARED obj5.c)
|
|
set_property(TARGET lib4 PROPERTY PUBLIC_HEADER ${CMAKE_CURRENT_SOURCE_DIR}/obj5.h)
|
|
|
|
install(TARGETS exe lib1 lib2)
|
|
install(TARGETS lib3
|
|
LIBRARY DESTINATION lib3
|
|
ARCHIVE DESTINATION lib3
|
|
)
|
|
install(TARGETS lib4
|
|
LIBRARY DESTINATION lib4
|
|
RUNTIME DESTINATION lib4
|
|
)
|