source: trunk/src/CMakeLists.txt@ 2603

Last change on this file since 2603 was 2587, checked in by WataruKawasaki, 12 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s): sd

Description: added qt4 settings for cmakefiles, and cleaned up some debug codes.


File size: 3.5 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}/Logger.cpp
33 ${SRCDIR}/LineCatalog.cpp
34 ${SRCDIR}/STAttr.cpp
35 ${SRCDIR}/STHeader.cpp
36 ${SRCDIR}/STFiller.cpp
37 ${SRCDIR}/STMath.cpp
38 ${SRCDIR}/STSubTable.cpp
39 ${SRCDIR}/STMolecules.cpp
40 ${SRCDIR}/STTcal.cpp
41 ${SRCDIR}/STFocus.cpp
42 ${SRCDIR}/STWeather.cpp
43 ${SRCDIR}/STFrequencies.cpp
44 ${SRCDIR}/STHistory.cpp
45 ${SRCDIR}/STSelector.cpp
46 ${SRCDIR}/STLineFinder.cpp
47 ${SRCDIR}/STFitter.cpp
48 ${SRCDIR}/STFitEntry.cpp
49 ${SRCDIR}/STFit.cpp
50 ${SRCDIR}/STPol.cpp
51 ${SRCDIR}/STPolLinear.cpp
52 ${SRCDIR}/STPolCircular.cpp
53 ${SRCDIR}/STPolStokes.cpp
54 ${SRCDIR}/STWriter.cpp
55 ${SRCDIR}/STAsciiWriter.cpp
56 ${SRCDIR}/STFITSImageWriter.cpp
57 ${SRCDIR}/STAtmosphere.cpp
58 ${SRCDIR}/Scantable.cpp
59 ${SRCDIR}/FillerBase.cpp
60 ${SRCDIR}/NROFiller.cpp
61 ${SRCDIR}/PKSFiller.cpp
62 ${SRCDIR}/MSFiller.cpp
63 ${SRCDIR}/MSWriter.cpp
64 ${SRCDIR}/AsapLogSink.cpp
65 ${SRCDIR}/STUpgrade.cpp
66 ${SRCDIR}/STGrid.cpp
67 ${SRCDIR}/STIdxIter.cpp
68 ${SRCDIR}/Templates.cpp )
69
70set( ASAP_PYSRCS
71# ${SRCDIR}/python_Plotter2.cpp
72 ${SRCDIR}/python_Scantable.cpp
73 ${SRCDIR}/python_STFiller.cpp
74 ${SRCDIR}/python_STSelector.cpp
75 ${SRCDIR}/python_STMath.cpp
76 ${SRCDIR}/python_Fitter.cpp
77 ${SRCDIR}/python_Logger.cpp
78 ${SRCDIR}/python_STLineFinder.cpp
79 ${SRCDIR}/python_STFitEntry.cpp
80 ${SRCDIR}/python_STWriter.cpp
81 ${SRCDIR}/python_LineCatalog.cpp
82 ${SRCDIR}/python_SrcType.cpp
83 ${SRCDIR}/python_STAtmosphere.cpp
84 ${SRCDIR}/python_STCoordinate.cpp
85 ${SRCDIR}/python_Filler.cpp
86 ${SRCDIR}/python_MSFiller.cpp
87 ${SRCDIR}/python_MSWriter.cpp
88 ${SRCDIR}/python_LogSink.cpp
89 ${SRCDIR}/python_STGrid.cpp
90 ${SRCDIR}/python_Iterator.cpp
91 ${SRCDIR}/python_asap.cpp )
92
93add_library( ${ASAPLIB} SHARED ${ASAP_SRCS} )
94add_library( ${ASAPPYLIB} SHARED ${ASAP_PYSRCS} )
95
96# library name must be _asap.so
97set_target_properties( ${ASAPPYLIB}
98 PROPERTIES
99 PREFIX ""
100 SUFFIX .so )
101
102target_link_libraries( ${ASAPLIB}
103 #${Boost_LIBRARIES}
104 ${QT4_LIBRARIES}
105 ${PYRAPLIB}
106 ${ATNFLIB}
107 #${CASACORE_LIBRARIES}
108 ${WCSLIB} )
109target_link_libraries( ${ASAPPYLIB}
110 ${ASAPLIB} )
111
112add_dependencies( inst ${ASAPLIB}
113 ${ASAPPYLIB} )
114
115# install directory
116install( TARGETS ${ASAPLIB}
117 LIBRARY DESTINATION ${LIB_INSTALL_DIR} )
118install( TARGETS ${ASAPPYLIB}
119 LIBRARY DESTINATION ${PYTHON_INSTALL_DIR} )
120#if( NOT STANDALONE )
121# execute_process(
122# COMMAND ln -Fs ../${PYTHON_INSTALL_DIR}/_${ASAPLIB}.so ${CMAKE_INSTALL_PREFIX}/lib/_${ASAPLIB}.so
123# OUTPUT_VARIABLE stuff)
124#endif()
Note: See TracBrowser for help on using the repository browser.