You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/diagrtb/files/CMakeLists.txt

14 lines
364 B

cmake_minimum_required (VERSION 2.6)
project (DIAGRTB Fortran)
option (EXAMPLES "Instal additional example files" OFF)
add_executable(diagrtb diagrtb.f)
install (TARGETS diagrtb DESTINATION bin)
install (FILES diagrtb.README DESTINATION share/doc/diagrtb)
if ( EXAMPLES )
install (DIRECTORY ../Try_RTB2011 DESTINATION share/diagrtb/examples)
endif (EXAMPLES)