source: trunk/cmake/standalone.cmake @ 1970

Last change on this file since 1970 was 1970, checked in by Takeshi Nakazato, 13 years ago

New Development: No

JIRA Issue: Yes CAS-2668

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Refactoring.


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.