mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
8 lines
256 B
CMake
8 lines
256 B
CMake
set(CMAKE_INTERMEDIATE_DIR_STRATEGY SHORT CACHE STRING "" FORCE)
|
|
|
|
enable_language(C)
|
|
add_library(greeting STATIC greeting.c)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
add_executable(hello hello_with_greeting.c)
|
|
target_link_libraries(hello greeting)
|