source: trunk/src/CMakeLists.txt@ 2683

Last change on this file since 2683 was 2663, checked in by Kana Sugimoto, 12 years ago

New Development: No

JIRA Issue: No (fixes to broken cmake build)

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: Malte has removed Logger class in r2658.

Test Programs: build with cmake

Put in Release Notes: No

Module(s):

Description:

Updated a CMake build script corresponding to modifications by Malte in r2658.
ASAP uses LogIO in casacore for c++ logging and does not depend on Logging
class in ASAP anymore.
This commit updates a CMake build script to fix the broken build due to the
commit. and also removes unused prototype definition in python_asap class.


File size: 3.6 KB
RevLine 
[1954]1###
2# CMakeLists.txt for _asap.so
3###
4
5# root for libatnf
6set( ASAPROOT ${ASAP_SOURCE_DIR} )
7set( SRCDIR ${ASAPROOT}/src )
8
[2587]9# include QT_USE_FILE
10include( ${QT_USE_FILE} )
11
[1954]12# include path
[1957]13include_directories( ${SRCDIR}
14 ${Boost_INCLUDE_DIR}
[2587]15 ${QT4_INCLUDE_DIRS}
[1957]16 ${ASAPROOT}/external-alma
17 ${ASAPROOT}/external/libpyrap/pyrap-0.3.2 )
[1954]18
19# link path
20link_directories( ${SRCDIR} )
21
[1957]22# use libpyrap
23add_definitions( -DHAVE_LIBPYRAP )
24
[1954]25# source files for libpyrap
26set( ASAP_SRCS
[2587]27# ${SRCDIR}/Plotter2.cpp
[2393]28 ${SRCDIR}/concurrent.cpp
[1954]29 ${SRCDIR}/MathUtils.cpp
[2289]30 ${SRCDIR}/TableTraverse.cpp
[1954]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
[1974]61 ${SRCDIR}/MSFiller.cpp
62 ${SRCDIR}/MSWriter.cpp
[1954]63 ${SRCDIR}/AsapLogSink.cpp
[2321]64 ${SRCDIR}/STUpgrade.cpp
[2356]65 ${SRCDIR}/STGrid.cpp
[2580]66 ${SRCDIR}/STIdxIter.cpp
[2613]67 ${SRCDIR}/EdgeMarker.cpp
68 ${SRCDIR}/EdgeDetector.cpp
69 ${SRCDIR}/RasterEdgeDetector.cpp
70 ${SRCDIR}/GenericEdgeDetector.cpp
[1954]71 ${SRCDIR}/Templates.cpp )
72
73set( ASAP_PYSRCS
[2587]74# ${SRCDIR}/python_Plotter2.cpp
[1954]75 ${SRCDIR}/python_Scantable.cpp
76 ${SRCDIR}/python_STFiller.cpp
77 ${SRCDIR}/python_STSelector.cpp
78 ${SRCDIR}/python_STMath.cpp
79 ${SRCDIR}/python_Fitter.cpp
80 ${SRCDIR}/python_STLineFinder.cpp
81 ${SRCDIR}/python_STFitEntry.cpp
82 ${SRCDIR}/python_STWriter.cpp
83 ${SRCDIR}/python_LineCatalog.cpp
84 ${SRCDIR}/python_SrcType.cpp
85 ${SRCDIR}/python_STAtmosphere.cpp
86 ${SRCDIR}/python_STCoordinate.cpp
87 ${SRCDIR}/python_Filler.cpp
[1974]88 ${SRCDIR}/python_MSFiller.cpp
89 ${SRCDIR}/python_MSWriter.cpp
[1954]90 ${SRCDIR}/python_LogSink.cpp
[2356]91 ${SRCDIR}/python_STGrid.cpp
[2580]92 ${SRCDIR}/python_Iterator.cpp
[2613]93 ${SRCDIR}/python_EdgeMarker.cpp
[1954]94 ${SRCDIR}/python_asap.cpp )
95
[2465]96add_library( ${ASAPLIB} SHARED ${ASAP_SRCS} )
97add_library( ${ASAPPYLIB} SHARED ${ASAP_PYSRCS} )
[1957]98
99# library name must be _asap.so
[2465]100set_target_properties( ${ASAPPYLIB}
[1954]101 PROPERTIES
[2465]102 PREFIX ""
[1958]103 SUFFIX .so )
[1954]104
[1957]105target_link_libraries( ${ASAPLIB}
[1958]106 #${Boost_LIBRARIES}
[2587]107 ${QT4_LIBRARIES}
[1957]108 ${PYRAPLIB}
109 ${ATNFLIB}
[1958]110 #${CASACORE_LIBRARIES}
[1957]111 ${WCSLIB} )
[2465]112target_link_libraries( ${ASAPPYLIB}
113 ${ASAPLIB} )
[1957]114
[2465]115add_dependencies( inst ${ASAPLIB}
116 ${ASAPPYLIB} )
[1966]117
[1954]118# install directory
119install( TARGETS ${ASAPLIB}
[2465]120 LIBRARY DESTINATION ${LIB_INSTALL_DIR} )
121install( TARGETS ${ASAPPYLIB}
[1954]122 LIBRARY DESTINATION ${PYTHON_INSTALL_DIR} )
[2465]123#if( NOT STANDALONE )
124# execute_process(
125# COMMAND ln -Fs ../${PYTHON_INSTALL_DIR}/_${ASAPLIB}.so ${CMAKE_INSTALL_PREFIX}/lib/_${ASAPLIB}.so
126# OUTPUT_VARIABLE stuff)
127#endif()
Note: See TracBrowser for help on using the repository browser.