source: trunk/cmake/standalone.cmake

Last change on this file was 3035, checked in by Kana Sugimoto, 9 years ago

New Development: Yes

JIRA Issue: Yes (CAS-7383))

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s): asap

Description: use libcasa_python instead of pyrap in cmake.


File size: 813 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 )
38   add_subdirectory( external-alma/components )
39endmacro( asap_add_subdirectory )
Note: See TracBrowser for help on using the repository browser.