mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 13:50:10 -05:00
9 lines
209 B
Plaintext
9 lines
209 B
Plaintext
cmake_minimum_required(VERSION "@CMAKE_VERSION@")
|
|
project("@TRY_COMPILE_PROJECT_NAME@" LANGUAGES C)
|
|
|
|
# TODO: IPO policy
|
|
|
|
add_library(foo foo.c)
|
|
add_executable(boo main.c)
|
|
target_link_libraries(boo PUBLIC foo)
|