source: trunk/cmake/standalone.cmake@ 3030

Last change on this file since 3030 was 3028, checked in by Kana Sugimoto, 10 years ago

New Development: No

JIRA Issue:

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s):

Description: modifications to use proper libcomponents.so.


File size: 812 bytes
RevLine 
[1968]1###
2# CMakeLists.txt for standalone build
3###
4
5
6#
7# casacore
8#
9# always use libcasacore.so
[2277]10set( USE_LIBCASACORE ON )
[1970]11set( CASACORE_PATHS "/usr/local;/usr" )
[1968]12
13
14#
15# wcslib
16#
[1970]17set( WCSLIB_PATHS "/usr/local;/usr" )
[1968]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 )
[3028]38 add_subdirectory( external-alma/components )
[1968]39endmacro( asap_add_subdirectory )
Note: See TracBrowser for help on using the repository browser.