source: trunk/src/CMakeLists.txt @ 2703

Last change on this file since 2703 was 2703, checked in by Takeshi Nakazato, 11 years ago

New Development: Yes

JIRA Issue: Yes CAS-4770, 4771, 4772

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...

First version of calibration classes for sky calibration (STCalSkyPSAlma)
and Tsys calibration (STCalTsys), which are derived from base class
(STCalibration).

The caltable classes, STCalSky and STCalTsys, are renamed as STCalSkyTable
and STCalTsysTable, respectively.


File size: 3.9 KB
Line 
1###
2# CMakeLists.txt for _asap.so
3###
4
5# root for libatnf
6set( ASAPROOT ${ASAP_SOURCE_DIR} )
7set( SRCDIR ${ASAPROOT}/src )
8
9# include QT_USE_FILE
10include( ${QT_USE_FILE} )
11
12# include path
13include_directories( ${SRCDIR}
14                     ${Boost_INCLUDE_DIR}
15                     ${QT4_INCLUDE_DIRS}
16                     ${ASAPROOT}/external-alma
17                     ${ASAPROOT}/external/libpyrap/pyrap-0.3.2 )
18
19# link path
20link_directories( ${SRCDIR} )
21
22# use libpyrap
23add_definitions( -DHAVE_LIBPYRAP )
24
25# source files for libpyrap
26set( ASAP_SRCS
27#     ${SRCDIR}/Plotter2.cpp
28     ${SRCDIR}/concurrent.cpp
29     ${SRCDIR}/MathUtils.cpp
30     ${SRCDIR}/TableTraverse.cpp
31     ${SRCDIR}/RowAccumulator.cpp
32     ${SRCDIR}/LineCatalog.cpp
33     ${SRCDIR}/STAttr.cpp
34     ${SRCDIR}/STHeader.cpp
35     ${SRCDIR}/STFiller.cpp
36     ${SRCDIR}/STMath.cpp
37     ${SRCDIR}/STSubTable.cpp
38     ${SRCDIR}/STMolecules.cpp
39     ${SRCDIR}/STTcal.cpp
40     ${SRCDIR}/STFocus.cpp
41     ${SRCDIR}/STWeather.cpp
42     ${SRCDIR}/STFrequencies.cpp
43     ${SRCDIR}/STHistory.cpp
44     ${SRCDIR}/STSelector.cpp
45     ${SRCDIR}/STLineFinder.cpp
46     ${SRCDIR}/STFitter.cpp
47     ${SRCDIR}/STFitEntry.cpp
48     ${SRCDIR}/STFit.cpp
49     ${SRCDIR}/STPol.cpp
50     ${SRCDIR}/STPolLinear.cpp
51     ${SRCDIR}/STPolCircular.cpp
52     ${SRCDIR}/STPolStokes.cpp
53     ${SRCDIR}/STWriter.cpp
54     ${SRCDIR}/STAsciiWriter.cpp
55     ${SRCDIR}/STFITSImageWriter.cpp
56     ${SRCDIR}/STAtmosphere.cpp
57     ${SRCDIR}/Scantable.cpp
58     ${SRCDIR}/FillerBase.cpp
59     ${SRCDIR}/NROFiller.cpp
60     ${SRCDIR}/PKSFiller.cpp
61     ${SRCDIR}/MSFiller.cpp
62     ${SRCDIR}/MSWriter.cpp
63     ${SRCDIR}/AsapLogSink.cpp
64     ${SRCDIR}/STUpgrade.cpp
65     ${SRCDIR}/STGrid.cpp
66     ${SRCDIR}/STIdxIter.cpp
67     ${SRCDIR}/EdgeMarker.cpp
68     ${SRCDIR}/EdgeDetector.cpp
69     ${SRCDIR}/RasterEdgeDetector.cpp
70     ${SRCDIR}/GenericEdgeDetector.cpp
71     ${SRCDIR}/PlotHelper.cpp
72     ${SRCDIR}/STApplyTable.cpp
73     ${SRCDIR}/STCalTsysTable.cpp
74     ${SRCDIR}/STCalSkyTable.cpp
75     ${SRCDIR}/STCalibration.cpp
76     ${SRCDIR}/STCalSkyPSAlma.cpp
77     ${SRCDIR}/STCalTsys.cpp )
78
79set( ASAP_PYSRCS
80#     ${SRCDIR}/python_Plotter2.cpp
81     ${SRCDIR}/python_Scantable.cpp
82     ${SRCDIR}/python_STFiller.cpp
83     ${SRCDIR}/python_STSelector.cpp
84     ${SRCDIR}/python_STMath.cpp
85     ${SRCDIR}/python_Fitter.cpp
86     ${SRCDIR}/python_STLineFinder.cpp
87     ${SRCDIR}/python_STFitEntry.cpp
88     ${SRCDIR}/python_STWriter.cpp
89     ${SRCDIR}/python_LineCatalog.cpp
90     ${SRCDIR}/python_SrcType.cpp
91     ${SRCDIR}/python_STAtmosphere.cpp
92     ${SRCDIR}/python_STCoordinate.cpp
93     ${SRCDIR}/python_Filler.cpp
94     ${SRCDIR}/python_MSFiller.cpp
95     ${SRCDIR}/python_MSWriter.cpp
96     ${SRCDIR}/python_LogSink.cpp
97     ${SRCDIR}/python_STGrid.cpp
98     ${SRCDIR}/python_Iterator.cpp
99     ${SRCDIR}/python_EdgeMarker.cpp
100     ${SRCDIR}/python_PlotHelper.cpp
101     ${SRCDIR}/python_asap.cpp )
102
103add_library( ${ASAPLIB} SHARED ${ASAP_SRCS} )
104add_library( ${ASAPPYLIB} SHARED ${ASAP_PYSRCS} )
105
106# library name must be _asap.so
107set_target_properties( ${ASAPPYLIB}
108                       PROPERTIES
109                       PREFIX ""
110                       SUFFIX .so )
111
112target_link_libraries( ${ASAPLIB}
113                       #${Boost_LIBRARIES}
114                       ${QT4_LIBRARIES}
115                       ${PYRAPLIB}
116                       ${ATNFLIB}
117                       #${CASACORE_LIBRARIES}
118                       ${WCSLIB} )
119target_link_libraries( ${ASAPPYLIB}
120                       ${ASAPLIB} )
121
122add_dependencies( inst ${ASAPLIB}
123                       ${ASAPPYLIB} )
124
125# install directory
126install( TARGETS ${ASAPLIB}
127         LIBRARY DESTINATION ${LIB_INSTALL_DIR} )
128install( TARGETS ${ASAPPYLIB}
129         LIBRARY DESTINATION ${PYTHON_INSTALL_DIR} )
130#if( NOT STANDALONE )
131#  execute_process(
132#    COMMAND ln -Fs ../${PYTHON_INSTALL_DIR}/_${ASAPLIB}.so ${CMAKE_INSTALL_PREFIX}/lib/_${ASAPLIB}.so
133#    OUTPUT_VARIABLE stuff)
134#endif()
Note: See TracBrowser for help on using the repository browser.