[1954] | 1 | ###
|
---|
| 2 | # CMakeLists.txt for _asap.so
|
---|
| 3 | ###
|
---|
| 4 |
|
---|
| 5 | # root for libatnf
|
---|
| 6 | set( ASAPROOT ${ASAP_SOURCE_DIR} )
|
---|
| 7 | set( SRCDIR ${ASAPROOT}/src )
|
---|
| 8 |
|
---|
| 9 | # include path
|
---|
[1957] | 10 | include_directories( ${SRCDIR}
|
---|
| 11 | ${Boost_INCLUDE_DIR}
|
---|
| 12 | ${ASAPROOT}/external-alma
|
---|
| 13 | ${ASAPROOT}/external/libpyrap/pyrap-0.3.2 )
|
---|
[1954] | 14 |
|
---|
| 15 | # link path
|
---|
| 16 | link_directories( ${SRCDIR} )
|
---|
| 17 |
|
---|
[1957] | 18 | # use libpyrap
|
---|
| 19 | add_definitions( -DHAVE_LIBPYRAP )
|
---|
| 20 |
|
---|
[1954] | 21 | # source files for libpyrap
|
---|
| 22 | set( ASAP_SRCS
|
---|
[2393] | 23 | ${SRCDIR}/concurrent.cpp
|
---|
[1954] | 24 | ${SRCDIR}/MathUtils.cpp
|
---|
[2289] | 25 | ${SRCDIR}/TableTraverse.cpp
|
---|
[1954] | 26 | ${SRCDIR}/RowAccumulator.cpp
|
---|
| 27 | ${SRCDIR}/LineCatalog.cpp
|
---|
| 28 | ${SRCDIR}/STAttr.cpp
|
---|
| 29 | ${SRCDIR}/STHeader.cpp
|
---|
| 30 | ${SRCDIR}/STFiller.cpp
|
---|
| 31 | ${SRCDIR}/STMath.cpp
|
---|
| 32 | ${SRCDIR}/STSubTable.cpp
|
---|
| 33 | ${SRCDIR}/STMolecules.cpp
|
---|
| 34 | ${SRCDIR}/STTcal.cpp
|
---|
| 35 | ${SRCDIR}/STFocus.cpp
|
---|
| 36 | ${SRCDIR}/STWeather.cpp
|
---|
| 37 | ${SRCDIR}/STFrequencies.cpp
|
---|
| 38 | ${SRCDIR}/STHistory.cpp
|
---|
| 39 | ${SRCDIR}/STSelector.cpp
|
---|
| 40 | ${SRCDIR}/STLineFinder.cpp
|
---|
| 41 | ${SRCDIR}/STFitter.cpp
|
---|
| 42 | ${SRCDIR}/STFitEntry.cpp
|
---|
| 43 | ${SRCDIR}/STFit.cpp
|
---|
| 44 | ${SRCDIR}/STPol.cpp
|
---|
| 45 | ${SRCDIR}/STPolLinear.cpp
|
---|
| 46 | ${SRCDIR}/STPolCircular.cpp
|
---|
| 47 | ${SRCDIR}/STPolStokes.cpp
|
---|
| 48 | ${SRCDIR}/STWriter.cpp
|
---|
| 49 | ${SRCDIR}/STAsciiWriter.cpp
|
---|
| 50 | ${SRCDIR}/STFITSImageWriter.cpp
|
---|
| 51 | ${SRCDIR}/STAtmosphere.cpp
|
---|
| 52 | ${SRCDIR}/Scantable.cpp
|
---|
| 53 | ${SRCDIR}/FillerBase.cpp
|
---|
| 54 | ${SRCDIR}/NROFiller.cpp
|
---|
| 55 | ${SRCDIR}/PKSFiller.cpp
|
---|
[1974] | 56 | ${SRCDIR}/MSFiller.cpp
|
---|
| 57 | ${SRCDIR}/MSWriter.cpp
|
---|
[1954] | 58 | ${SRCDIR}/AsapLogSink.cpp
|
---|
[2321] | 59 | ${SRCDIR}/STUpgrade.cpp
|
---|
[2356] | 60 | ${SRCDIR}/STGrid.cpp
|
---|
[2580] | 61 | ${SRCDIR}/STIdxIter.cpp
|
---|
[2613] | 62 | ${SRCDIR}/EdgeMarker.cpp
|
---|
| 63 | ${SRCDIR}/EdgeDetector.cpp
|
---|
| 64 | ${SRCDIR}/RasterEdgeDetector.cpp
|
---|
| 65 | ${SRCDIR}/GenericEdgeDetector.cpp
|
---|
[2689] | 66 | ${SRCDIR}/PlotHelper.cpp
|
---|
[2707] | 67 | ${SRCDIR}/STSideBandSep.cpp
|
---|
[2696] | 68 | ${SRCDIR}/STApplyTable.cpp
|
---|
[2703] | 69 | ${SRCDIR}/STCalTsysTable.cpp
|
---|
| 70 | ${SRCDIR}/STCalSkyTable.cpp
|
---|
| 71 | ${SRCDIR}/STCalibration.cpp
|
---|
| 72 | ${SRCDIR}/STCalSkyPSAlma.cpp
|
---|
[2757] | 73 | ${SRCDIR}/STCalSkyOtfAlma.cpp
|
---|
[2720] | 74 | ${SRCDIR}/STCalTsys.cpp
|
---|
| 75 | ${SRCDIR}/STApplyCal.cpp
|
---|
| 76 | ${SRCDIR}/Calibrator.cpp
|
---|
| 77 | ${SRCDIR}/PSAlmaCalibrator.cpp
|
---|
[2742] | 78 | ${SRCDIR}/STBaselineTable.cpp
|
---|
| 79 | ${SRCDIR}/CalibrationManager.cpp )
|
---|
[1954] | 80 |
|
---|
[2833] | 81 | if ( NOT STANDALONE )
|
---|
| 82 | set( ASAP_SRCS
|
---|
| 83 | ${ASAP_SRCS}
|
---|
| 84 | ${SRCDIR}/Plotter2.cpp )
|
---|
| 85 | endif()
|
---|
| 86 |
|
---|
[1954] | 87 | set( ASAP_PYSRCS
|
---|
| 88 | ${SRCDIR}/python_Scantable.cpp
|
---|
| 89 | ${SRCDIR}/python_STFiller.cpp
|
---|
| 90 | ${SRCDIR}/python_STSelector.cpp
|
---|
| 91 | ${SRCDIR}/python_STMath.cpp
|
---|
| 92 | ${SRCDIR}/python_Fitter.cpp
|
---|
| 93 | ${SRCDIR}/python_STLineFinder.cpp
|
---|
| 94 | ${SRCDIR}/python_STFitEntry.cpp
|
---|
| 95 | ${SRCDIR}/python_STWriter.cpp
|
---|
| 96 | ${SRCDIR}/python_LineCatalog.cpp
|
---|
| 97 | ${SRCDIR}/python_SrcType.cpp
|
---|
| 98 | ${SRCDIR}/python_STAtmosphere.cpp
|
---|
| 99 | ${SRCDIR}/python_STCoordinate.cpp
|
---|
| 100 | ${SRCDIR}/python_Filler.cpp
|
---|
[1974] | 101 | ${SRCDIR}/python_MSFiller.cpp
|
---|
| 102 | ${SRCDIR}/python_MSWriter.cpp
|
---|
[1954] | 103 | ${SRCDIR}/python_LogSink.cpp
|
---|
[2356] | 104 | ${SRCDIR}/python_STGrid.cpp
|
---|
[2580] | 105 | ${SRCDIR}/python_Iterator.cpp
|
---|
[2613] | 106 | ${SRCDIR}/python_EdgeMarker.cpp
|
---|
[2689] | 107 | ${SRCDIR}/python_PlotHelper.cpp
|
---|
[2707] | 108 | ${SRCDIR}/python_STSideBandSep.cpp
|
---|
[2742] | 109 | ${SRCDIR}/python_CalibrationManager.cpp
|
---|
[1954] | 110 | ${SRCDIR}/python_asap.cpp )
|
---|
| 111 |
|
---|
[2833] | 112 | if ( NOT STANDALONE )
|
---|
| 113 | set( ASAP_PYSRCS
|
---|
| 114 | ${ASAP_PYSRCS}
|
---|
| 115 | ${SRCDIR}/python_Plotter2.cpp )
|
---|
| 116 | endif()
|
---|
| 117 |
|
---|
[2465] | 118 | add_library( ${ASAPLIB} SHARED ${ASAP_SRCS} )
|
---|
| 119 | add_library( ${ASAPPYLIB} SHARED ${ASAP_PYSRCS} )
|
---|
[1957] | 120 |
|
---|
[2872] | 121 | if ( DEFINED asap_soversion )
|
---|
| 122 | set_target_properties( ${ASAPLIB} PROPERTIES SOVERSION ${asap_soversion} )
|
---|
| 123 | set_target_properties( ${ASAPPYLIB} PROPERTIES SOVERSION ${asap_soversion} )
|
---|
| 124 | endif( )
|
---|
| 125 |
|
---|
[1957] | 126 | # library name must be _asap.so
|
---|
[2465] | 127 | set_target_properties( ${ASAPPYLIB}
|
---|
[1954] | 128 | PROPERTIES
|
---|
[2465] | 129 | PREFIX ""
|
---|
[1958] | 130 | SUFFIX .so )
|
---|
[1954] | 131 |
|
---|
[1957] | 132 | target_link_libraries( ${ASAPLIB}
|
---|
[1958] | 133 | #${Boost_LIBRARIES}
|
---|
[2830] | 134 | ${X11_LIBRARIES}
|
---|
| 135 | ${PGPLOT_LIBRARIES}
|
---|
[1957] | 136 | ${PYRAPLIB}
|
---|
| 137 | ${ATNFLIB}
|
---|
[1958] | 138 | #${CASACORE_LIBRARIES}
|
---|
[1957] | 139 | ${WCSLIB} )
|
---|
[2465] | 140 | target_link_libraries( ${ASAPPYLIB}
|
---|
| 141 | ${ASAPLIB} )
|
---|
[1957] | 142 |
|
---|
[2465] | 143 | add_dependencies( inst ${ASAPLIB}
|
---|
| 144 | ${ASAPPYLIB} )
|
---|
[1966] | 145 |
|
---|
[1954] | 146 | # install directory
|
---|
| 147 | install( TARGETS ${ASAPLIB}
|
---|
[2465] | 148 | LIBRARY DESTINATION ${LIB_INSTALL_DIR} )
|
---|
| 149 | install( TARGETS ${ASAPPYLIB}
|
---|
[1954] | 150 | LIBRARY DESTINATION ${PYTHON_INSTALL_DIR} )
|
---|
[2465] | 151 | #if( NOT STANDALONE )
|
---|
| 152 | # execute_process(
|
---|
| 153 | # COMMAND ln -Fs ../${PYTHON_INSTALL_DIR}/_${ASAPLIB}.so ${CMAKE_INSTALL_PREFIX}/lib/_${ASAPLIB}.so
|
---|
| 154 | # OUTPUT_VARIABLE stuff)
|
---|
| 155 | #endif()
|
---|