source: tags/casa3.3.0asap/cmake/standalone.cmake@ 2803

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

revert accidental changes

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