mirror of
https://github.com/reactos/CMake.git
synced 2025-03-06 19:08:43 +00:00
9 lines
226 B
Plaintext
9 lines
226 B
Plaintext
cmake_minimum_required(VERSION "@CMAKE_VERSION@")
|
|
project("@TRY_COMPILE_PROJECT_NAME@" LANGUAGES Fortran)
|
|
|
|
cmake_policy(SET CMP0069 NEW)
|
|
|
|
add_library(foo foo.f)
|
|
add_executable(boo main.f)
|
|
target_link_libraries(boo PUBLIC foo)
|