[1968] | 1 | ###
|
---|
| 2 | # CMakeLists.txt for build with casa
|
---|
| 3 | ###
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | # environment dependent settings
|
---|
| 7 | if( APPLE )
|
---|
[2400] | 8 | if( CMAKE_SYSTEM MATCHES ^Darwin-10 OR
|
---|
[2898] | 9 | CMAKE_SYSTEM MATCHES ^Darwin-11 OR
|
---|
| 10 | CMAKE_SYSTEM MATCHES ^Darwin-12 )
|
---|
[2399] | 11 | if ( NOT arch )
|
---|
| 12 | set( arch darwin64 )
|
---|
| 13 | endif()
|
---|
[1968] | 14 | if( NOT archflag )
|
---|
[2893] | 15 | if( EXISTS /opt/casa/darwin12 )
|
---|
[1968] | 16 | set( archflag x86_64 )
|
---|
[2893] | 17 | elseif( EXISTS /opt/casa/darwin11 )
|
---|
| 18 | set( archflag x86_64 )
|
---|
[2400] | 19 | elseif( EXISTS /opt/casa/darwin10-64b )
|
---|
| 20 | set( archflag x86_64 )
|
---|
[1968] | 21 | elseif( EXISTS /opt/casa/core2-apple-darwin10 )
|
---|
| 22 | set( archflag i386 )
|
---|
[2931] | 23 | elseif( EXISTS /opt/casa/01 )
|
---|
| 24 | set( archflag x86_64 )
|
---|
[1968] | 25 | else()
|
---|
| 26 | set( archflag x86_64 )
|
---|
| 27 | endif()
|
---|
| 28 | endif()
|
---|
| 29 | if( archflag STREQUAL x86_64 )
|
---|
[2893] | 30 | if( CMAKE_SYSTEM MATCHES ^Darwin-12 )
|
---|
| 31 | set( casa_packages /opt/local )
|
---|
| 32 | elseif( CMAKE_SYSTEM MATCHES ^Darwin-11 )
|
---|
[2931] | 33 | if ( EXISTS /opt/casa/01 )
|
---|
| 34 | set( casa_packages /opt/casa/01 )
|
---|
| 35 | else()
|
---|
| 36 | set( casa_packages /opt/casa/darwin11 )
|
---|
| 37 | endif()
|
---|
[2400] | 38 | else()
|
---|
| 39 | set( casa_packages /opt/casa/darwin10-64b )
|
---|
| 40 | endif()
|
---|
[1968] | 41 | else()
|
---|
| 42 | set( casa_packages /opt/casa/core2-apple-darwin10 )
|
---|
| 43 | endif()
|
---|
| 44 | elseif( CMAKE_SYSTEM MATCHES ^Darwin-9 )
|
---|
[2399] | 45 | if ( NOT arch )
|
---|
| 46 | set( arch darwin )
|
---|
| 47 | endif()
|
---|
[1968] | 48 | set( casa_packages /opt/casa/core2-apple-darwin8/3rd-party )
|
---|
| 49 | endif()
|
---|
| 50 | elseif( CMAKE_SYSTEM_NAME STREQUAL Linux )
|
---|
| 51 | if( CMAKE_SYSTEM_PROCESSOR STREQUAL x86_64 )
|
---|
[2847] | 52 | if ( EXISTS /usr/lib64/casa/01 )
|
---|
| 53 | set( casa_packages /usr/lib64/casa/01 )
|
---|
| 54 | else( )
|
---|
| 55 | set( casa_packages /usr/lib64/casapy )
|
---|
| 56 | endif( )
|
---|
[1968] | 57 | if( NOT arch )
|
---|
| 58 | set( arch linux_64b )
|
---|
| 59 | endif()
|
---|
| 60 | else()
|
---|
| 61 | set( casa_packages /usr/lib/casapy )
|
---|
| 62 | if( NOT arch )
|
---|
| 63 | set( arch linux_gnu )
|
---|
| 64 | endif()
|
---|
| 65 | endif()
|
---|
| 66 | endif()
|
---|
| 67 | message( STATUS "arch = " ${arch} )
|
---|
| 68 |
|
---|
[1991] | 69 | # install directory
|
---|
| 70 | #
|
---|
| 71 | # The layout of the source+install directory trees
|
---|
| 72 | # is rather hard-coded in much source code. However,
|
---|
| 73 | # with care CASA can be built and installed elsewhere...
|
---|
| 74 | #
|
---|
| 75 | IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
---|
| 76 | # the regular expression means '../'
|
---|
| 77 | # [^ ] Matches any character(s) not inside the brackets
|
---|
| 78 | # + Matches preceding pattern one or more times
|
---|
| 79 | # ? Matches preceding pattern zero or once only
|
---|
| 80 | # $ Mathces at end of a line
|
---|
| 81 | string( REGEX REPLACE /[^/]+/?$ "" casaroot ${CMAKE_SOURCE_DIR} )
|
---|
[2092] | 82 | set( CMAKE_INSTALL_PREFIX ${casaroot}/${arch} CACHE PATH "casa architecture directory" FORCE )
|
---|
[1991] | 83 | ELSE()
|
---|
[2092] | 84 | set( casaroot ${CMAKE_INSTALL_PREFIX}/.. CACHE PATH "casa architecture directory" FORCE )
|
---|
[1991] | 85 | ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
---|
[1968] | 86 |
|
---|
[1991] | 87 | message( STATUS "casaroot = " ${casaroot} )
|
---|
[1968] | 88 |
|
---|
[1991] | 89 | # modules
|
---|
[2183] | 90 | IF ( NOT DEFINED CASA_CODE_PATH )
|
---|
| 91 | IF ( EXISTS ${casaroot}/code/install )
|
---|
| 92 | set( CASA_CODE_PATH ${casaroot}/code )
|
---|
| 93 | ELSE()
|
---|
| 94 | set( CASA_CODE_PATH ${CMAKE_SOURCE_DIR}/../code )
|
---|
| 95 | ENDIF()
|
---|
[1991] | 96 | ENDIF()
|
---|
[2183] | 97 | message( STATUS "CASA_CODE_PATH = " ${CASA_CODE_PATH} )
|
---|
| 98 | set( CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CASA_CODE_PATH}/install" )
|
---|
[2181] | 99 | message( STATUS "CMAKE_MODULE_PATH = " ${CMAKE_MODULE_PATH} )
|
---|
[1991] | 100 |
|
---|
| 101 | include( config )
|
---|
| 102 | include( CASA )
|
---|
| 103 |
|
---|
[1968] | 104 | #
|
---|
| 105 | # casacore
|
---|
| 106 | #
|
---|
[1976] | 107 | set( CASACORE_PATHS "${casaroot}/${arch};${casaroot};/usr/local;/usr" )
|
---|
[1968] | 108 |
|
---|
[2898] | 109 | SET(NO_SOVERSION FALSE CACHE BOOL "do not add version information to shared libraries")
|
---|
| 110 | if( NOT NO_SOVERSION )
|
---|
| 111 | set( epochdelta 1385403204 )
|
---|
| 112 | if ( EXISTS ${CMAKE_INSTALL_PREFIX}/${arch}/casa_sover.txt )
|
---|
| 113 | execute_process( COMMAND perl -e "while (<>) { chomp and print if (! m/^\#/ ) }" ${CMAKE_INSTALL_PREFIX}/${arch}/casa_sover.txt
|
---|
| 114 | OUTPUT_VARIABLE __asap_soversion )
|
---|
| 115 | elseif( EXISTS ${CMAKE_INSTALL_PREFIX}/casa_sover.txt )
|
---|
| 116 | execute_process( COMMAND perl -e "while (<>) { chomp and print if (! m/^#/ ) }" ${CMAKE_INSTALL_PREFIX}/casa_sover.txt
|
---|
| 117 | OUTPUT_VARIABLE __asap_soversion )
|
---|
| 118 | else( )
|
---|
| 119 | execute_process( COMMAND perl -e "$t=time( )-${epochdelta};$z=$t & 0xff; $y=($t>>8)&0xff; $x=($t>>16)&0xffff; print \"$x.$y.$z\""
|
---|
| 120 | OUTPUT_VARIABLE __asap_soversion )
|
---|
| 121 | endif( )
|
---|
| 122 | set(asap_soversion ${__asap_soversion} CACHE STRING "version for shared objects")
|
---|
| 123 | message( STATUS "Shared object version number ${asap_soversion}" )
|
---|
[2872] | 124 | else( )
|
---|
[2898] | 125 | message( STATUS "User disabled shared library versioning" )
|
---|
[2872] | 126 | endif( )
|
---|
[1968] | 127 |
|
---|
| 128 | #
|
---|
| 129 | # Boost
|
---|
| 130 | #
|
---|
| 131 | if( NOT BOOST_ROOT )
|
---|
| 132 | set( BOOST_ROOT ${casa_packages} )
|
---|
| 133 | endif()
|
---|
| 134 |
|
---|
| 135 |
|
---|
| 136 | #
|
---|
| 137 | # wcslib
|
---|
| 138 | #
|
---|
[1970] | 139 | set( WCSLIB_PATHS "${casaroot}/${arch};/usr/local;/usr" )
|
---|
[1968] | 140 |
|
---|
| 141 |
|
---|
| 142 | #
|
---|
[2210] | 143 | # CASA (only alma/ASDM)
|
---|
| 144 | #
|
---|
| 145 | find_path( LIBXML2_INCLUDE_DIR libxml/xmlversion.h
|
---|
| 146 | PATH_SUFFIXES libxml2 )
|
---|
| 147 | if( LIBXML2_INCLUDE_DIR MATCHES "NOTFOUND$" )
|
---|
| 148 | message( FATAL_ERROR "libxml/xmlversion.h could not be found. Please check!" )
|
---|
| 149 | endif()
|
---|
| 150 | message( STATUS "LIBXML2_INCLUDE_DIR = " ${LIBXML2_INCLUDE_DIR} )
|
---|
[2236] | 151 | find_path( LIBXML2_LIBRARY libxml2${CMAKE_SHARED_LIBRARY_SUFFIX}
|
---|
[2210] | 152 | PATHS /usr
|
---|
| 153 | PATH_SUFFIXES lib64 lib )
|
---|
| 154 | #find_path( LIBXML2_LIBRARY libxml2.so )
|
---|
| 155 | if ( LIBXML2_LIBRARY MATCHES "NOTFOUND$" )
|
---|
[2236] | 156 | message( FATAL_ERROR "libxml2${CMAKE_SHARED_LIBRARY_SUFFIX} could not be found. Please check!" )
|
---|
[2210] | 157 | endif()
|
---|
| 158 | message( STATUS "LIBXML2_LIBRARY = " ${LIBXML2_LIBRARY} )
|
---|
[2578] | 159 |
|
---|
| 160 | set( ASDM_INCLUDE_ROOT ${CASA_CODE_PATH} )
|
---|
| 161 | if ( EXISTS ${CASA_CODE_PATH}/include/alma )
|
---|
| 162 | set( ASDM_INCLUDE_ROOT ${CASA_CODE_PATH}/include )
|
---|
| 163 | endif()
|
---|
| 164 | #set( ASDM_INCLUDE_DIR_OLD ${ASDM_INCLUDE_ROOT}/alma/ASDM
|
---|
| 165 | # ${ASDM_INCLUDE_ROOT}/alma/Enumerations
|
---|
| 166 | # ${ASDM_INCLUDE_ROOT}/alma/ASDMBinaries
|
---|
| 167 | # ${ASDM_INCLUDE_ROOT}/alma/Enumtcl
|
---|
[2417] | 168 | # ${LIBXML2_INCLUDE_DIR} )
|
---|
| 169 | #set( ASDM_LIBRARY_OLD ${casaroot}/${arch}/lib/libalma${CMAKE_SHARED_LIBRARY_SUFFIX}
|
---|
| 170 | # ${LIBXML2_LIBRARY}/libxml2${CMAKE_SHARED_LIBRARY_SUFFIX} )
|
---|
[2578] | 171 | #set( ASDM_INCLUDE_DIR ${ASDM_INCLUDE_ROOT}/alma_v3/ASDM
|
---|
| 172 | # ${ASDM_INCLUDE_ROOT}/alma_v3/Enumerations
|
---|
| 173 | # ${ASDM_INCLUDE_ROOT}/alma_v3/ASDMBinaries
|
---|
| 174 | # ${ASDM_INCLUDE_ROOT}/alma_v3/Enumtcl
|
---|
[2417] | 175 | # ${LIBXML2_INCLUDE_DIR} )
|
---|
| 176 | #set( ASDM_LIBRARY ${casaroot}/${arch}/lib/libalma_v3${CMAKE_SHARED_LIBRARY_SUFFIX}
|
---|
| 177 | # ${LIBXML2_LIBRARY}/libxml2${CMAKE_SHARED_LIBRARY_SUFFIX} )
|
---|
[2578] | 178 | set( ASDM_INCLUDE_DIR ${ASDM_INCLUDE_ROOT}/alma/ASDM
|
---|
| 179 | ${ASDM_INCLUDE_ROOT}/alma/Enumerations
|
---|
| 180 | ${ASDM_INCLUDE_ROOT}/alma/ASDMBinaries
|
---|
| 181 | ${ASDM_INCLUDE_ROOT}/alma/Enumtcl
|
---|
[2210] | 182 | ${LIBXML2_INCLUDE_DIR} )
|
---|
[2558] | 183 | if ( NOT ALMA_LIB_PATH )
|
---|
| 184 | set( ASDM_LIBRARY ${casaroot}/${arch}/lib/libalma${CMAKE_SHARED_LIBRARY_SUFFIX}
|
---|
| 185 | ${LIBXML2_LIBRARY}/libxml2${CMAKE_SHARED_LIBRARY_SUFFIX} )
|
---|
| 186 | else( )
|
---|
| 187 | set( ASDM_LIBRARY ${ALMA_LIB_PATH}
|
---|
| 188 | ${LIBXML2_LIBRARY}/libxml2${CMAKE_SHARED_LIBRARY_SUFFIX} )
|
---|
| 189 | endif( )
|
---|
| 190 | message( STATUS "ASDM_LIBRARY = " ${ASDM_LIBRARY} )
|
---|
[2210] | 191 | add_definitions( -DWITHOUT_ACS )
|
---|
| 192 |
|
---|
| 193 | #
|
---|
[1968] | 194 | # subdirectories
|
---|
| 195 | # ASAP2TO3 asap2to3 apps
|
---|
| 196 | # PYRAPLIB libpyrap.so external/libpyrap
|
---|
| 197 | # ATNFLIB libatnf.so external-alma/atnf
|
---|
| 198 | # ASAPLIB _asap.so src
|
---|
| 199 | # python modules python
|
---|
| 200 | # shared files share
|
---|
| 201 | #
|
---|
| 202 | macro( asap_add_subdirectory )
|
---|
| 203 | add_subdirectory( apps )
|
---|
| 204 | add_subdirectory( external/libpyrap )
|
---|
| 205 | add_subdirectory( external-alma/atnf )
|
---|
| 206 | add_subdirectory( src )
|
---|
| 207 | add_subdirectory( python )
|
---|
| 208 | add_subdirectory( share )
|
---|
[2273] | 209 | add_subdirectory( external-alma/asdm2ASAP )
|
---|
[2417] | 210 | # add_subdirectory( external-alma/oldasdm2ASAP )
|
---|
[1968] | 211 | endmacro( asap_add_subdirectory )
|
---|
| 212 |
|
---|