mirror of
https://github.com/reactos/CMake.git
synced 2025-01-08 12:10:29 +00:00
1890c668e9
Update cmake_minimum_required calls in CMakeLists.txt in Modules and in CMakeLists.txt generated by other modules, so that they are always in sync with current CMake version.
8 lines
256 B
CMake
8 lines
256 B
CMake
cmake_minimum_required(VERSION ${CMAKE_VERSION})
|
|
project(IntelFortranImplicit Fortran)
|
|
add_custom_command(
|
|
OUTPUT output.cmake
|
|
COMMAND ${CMAKE_COMMAND} -P ${IntelFortranImplicit_SOURCE_DIR}/detect.cmake
|
|
)
|
|
add_library(FortranLib hello.f output.cmake)
|