mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
Raise cmake_minimum_required to 3.28 (because ~ppc) Closes: https://bugs.gentoo.org/952793 Closes: https://bugs.gentoo.org/954309 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
9 lines
229 B
CMake
9 lines
229 B
CMake
cmake_minimum_required (VERSION 3.28)
|
|
project (TMTools Fortran)
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
add_executable(TMalign TMalign.f)
|
|
add_executable(TMscore TMscore.f)
|
|
|
|
install (TARGETS TMalign TMscore DESTINATION ${CMAKE_INSTALL_BINDIR})
|