source: trunk/cmake/standalone.cmake@ 2276

Last change on this file since 2276 was 2276, checked in by Malte Marquarding, 13 years ago

Created 3.1.0 release tag

File size: 796 bytes
Line 
1###
2# CMakeLists.txt for standalone build
3###
4
5
6#
7# casacore
8#
9# always use libcasacore.so
10set( USE_LIBCASACORE OFF )
11set( CASACORE_PATHS "/usr/local;/usr" )
12
13
14#
15# wcslib
16#
17set( WCSLIB_PATHS "/usr/local;/usr" )
18
19find_package (RPFITS REQUIRED)
20
21#
22# subdirectories
23# ASAP2TO3 asap2to3 apps
24# PYRAPLIB libpyrap.so external/libpyrap
25# ATNFLIB libatnf.so external/atnf
26# ASAPLIB _asap.so src
27# python modules python
28# shared files share
29# executables bin
30#
31macro( asap_add_subdirectory )
32 add_subdirectory( apps )
33 add_subdirectory( external/libpyrap )
34 add_subdirectory( external/atnf )
35 add_subdirectory( src )
36 add_subdirectory( python )
37 add_subdirectory( share )
38 add_subdirectory( bin )
39endmacro( asap_add_subdirectory )
Note: See TracBrowser for help on using the repository browser.