summaryrefslogtreecommitdiff
path: root/sci-chemistry/pdbmat/files/CMakeLists.txt
blob: a20199bbca91046be576a9279b77800dfc7f1dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cmake_minimum_required (VERSION 2.6)
project (PDBMAT Fortran)

include(GNUInstallDirs)

option (EXAMPLES "Instal additional example files" OFF)

add_executable(diagstd diagstd.f)
add_executable(pdbmat pdbmat.f)

install (TARGETS diagstd pdbmat DESTINATION bin)
install (FILES diagstd.README pdbmat.README DESTINATION ${CMAKE_INSTALL_DOCDIR})

if ( EXAMPLES )
	install (DIRECTORY ../Try_ENM2011 DESTINATION ${CMAKE_INSTALL_DOCDIR}/examples)
endif (EXAMPLES)