diff options
author | 2012-03-21 13:57:18 +0000 | |
---|---|---|
committer | 2012-03-21 13:57:18 +0000 | |
commit | 4fb1bd44e6109b5572d2e3aa720234457b31452e (patch) | |
tree | a906de310f6596f8070a6652bfb29a3af7577e0a /sci-mathematics/diagrtb/files | |
parent | Fix metadata.xml (diff) | |
download | gentoo-2-4fb1bd44e6109b5572d2e3aa720234457b31452e.tar.gz gentoo-2-4fb1bd44e6109b5572d2e3aa720234457b31452e.tar.bz2 gentoo-2-4fb1bd44e6109b5572d2e3aa720234457b31452e.zip |
New addition, written by me
(Portage version: 2.2.0_alpha93/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/diagrtb/files')
-rw-r--r-- | sci-mathematics/diagrtb/files/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sci-mathematics/diagrtb/files/CMakeLists.txt b/sci-mathematics/diagrtb/files/CMakeLists.txt new file mode 100644 index 000000000000..d1eb6c62f09f --- /dev/null +++ b/sci-mathematics/diagrtb/files/CMakeLists.txt @@ -0,0 +1,13 @@ +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) |