source: tags/asap-4.1.0/CMakeLists.txt@ 2701

Last change on this file since 2701 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: 20.6 KB
Line 
1###
2# CMakeLists.txt for ASAP module
3###
4
5# minimum requirement for cmake version
6cmake_minimum_required( VERSION 2.8 )
7
8# options
9option( USE_LIBCASACORE
10 "set ON to use libcasacore.so instead of libcasa_*.so"
11 OFF )
12option( STANDALONE
13 "set ON to build standalone mode"
14 OFF )
15option( PKSMS
16 "set ON to diable to build PKSMS2reader/writer"
17 OFF )
18message( STATUS "USE_LIBCASACORE = " ${USE_LIBCASACORE} )
19message( STATUS "STANDALONE = " ${STANDALONE} )
20message( STATUS "PKSMS = " ${PKSMS} )
21
22# Use casapy's fork of casacore
23if ( NOT STANDALONE )
24 add_definitions( -DUSE_CASAPY )
25endif ()
26
27# Define compiler paths on OSX 10.5. This must be done before invoking project()
28if( APPLE )
29 if( EXISTS /opt/casa/core2-apple-darwin8/3rd-party/bin/gfortran )
30 set( CMAKE_Fortran_COMPILER /opt/casa/core2-apple-darwin8/3rd-party/bin/gfortran )
31 set( CMAKE_CXX_COMPILER /opt/casa/core2-apple-darwin8/3rd-party/bin/g++ )
32 elseif( EXISTS /opt/local/bin/gfortran )
33 set( CMAKE_Fortran_COMPILER /opt/local/bin/gfortran )
34 elseif( EXISTS /opt/local/bin/gfortran-mp-4.4 )
35 set( CMAKE_Fortran_COMPILER /opt/local/bin/gfortran-mp-4.4 )
36 if( EXISTS /opt/local/bin/g++-mp-4.4 )
37 set( CMAKE_CXX_COMPILER /opt/local/bin/g++-mp-4.4 )
38 endif()
39 endif()
40endif()
41
42
43# project name is ASAP
44project( ASAP )
45
46
47#
48# build type and their flags
49#
50# CMAKE_BUILD_TYPE (Release, Debug, RelWithDebInfo, MinSizeRel, Profile)
51# default is RelWithDebInfo
52#
53
54
55if ( NOT CMAKE_BUILD_TYPE )
56 set( CMAKE_BUILD_TYPE RelWithDebInfo )
57endif()
58message( STATUS "CMAKE_BUILD_TYPE = " ${CMAKE_BUILD_TYPE} )
59
60# flags for Debug build
61if ( CMAKE_BUILD_TYPE STREQUAL Debug )
62 add_definitions( -DAIPS_DEBUG )
63endif()
64set( CMAKE_CXX_FLAGS_DEBUG "-ggdb3 -O0 -fno-omit-frame-pointer" )
65
66# flags for Profile build
67set( CMAKE_CXX_FLAGS_PROFILE "-g -O2 -pg -fprofile-arcs -fno-omit-frame-pointer" )
68
69# flags for Release build
70set( CMAKE_SHARED_LINKER_FLAGS_RELEASE "-Wl,-s" )
71set( CMAKE_EXE_LINKER_FLAGS_RELEASE "-Wl,-s" )
72
73# flags for MinSizeRel build
74set( CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL "-Wl,-s" )
75set( CMAKE_EXE_LINKER_FLAGS_MINSIZEREL "-Wl,-s" )
76
77if ( DEFINED CXX_FLAGS_TAIL_END )
78 set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${CXX_FLAGS_TAIL_END}" )
79 set( CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${CXX_FLAGS_TAIL_END}" )
80 set( CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} ${CXX_FLAGS_TAIL_END}" )
81 set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} ${CXX_FLAGS_TAIL_END}" )
82 set( CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_PROFILE} ${CXX_FLAGS_TAIL_END}" )
83endif()
84
85# default flags
86set( DEFAULT_CXX_FLAGS
87 "-pipe -Wall -Wextra -Wno-non-template-friend -Wcast-align -Wno-comment" )
88
89find_package( OpenMP )
90if( OPENMP_FOUND )
91 set( DEFAULT_CXX_FLAGS "${DEFAULT_CXX_FLAGS} ${OpenMP_CXX_FLAGS}" )
92endif()
93
94# environment dependent settings
95message( STATUS "CMAKE_SYSTEM = " ${CMAKE_SYSTEM} )
96message( STATUS "CMAKE_SYSTEM_PROCESSOR = " ${CMAKE_SYSTEM_PROCESSOR} )
97if( APPLE )
98 set( SO dylib )
99 if( CMAKE_SYSTEM MATCHES ^Darwin-10 OR
100 CMAKE_SYSTEM MATCHES ^Darwin-11 )
101 if( NOT archflag )
102 if( EXISTS /opt/casa/darwin11 )
103 set( archflag x86_64 )
104 elseif( EXISTS /opt/casa/darwin10-64b )
105 set( archflag x86_64 )
106 elseif( EXISTS /opt/casa/core2-apple-darwin10 )
107 set( archflag i386 )
108 else()
109 set( archflag x86_64 )
110 endif()
111 endif()
112 if( archflag STREQUAL x86_64 )
113 add_definitions( -DAIPS_64B )
114 endif()
115 execute_process( COMMAND ${CMAKE_CXX_COMPILER} --version
116 COMMAND head -1
117 COMMAND perl -pe "s|.*?(\\d+\\.\\d+)\\.\\d+$|$1|"
118 OUTPUT_VARIABLE _cxx_version
119 OUTPUT_STRIP_TRAILING_WHITESPACE )
120 if( NOT _cxx_version STREQUAL "4.4" )
121 set( DEFAULT_CXX_FLAGS "${DEFAULT_CXX_FLAGS} -arch ${archflag}" )
122 endif()
123 endif()
124elseif( CMAKE_SYSTEM_NAME STREQUAL Linux )
125 set( SO so )
126 add_definitions( -DAIPS_LINUX )
127 if( CMAKE_SYSTEM_PROCESSOR STREQUAL x86_64 )
128 add_definitions( -DAIPS_64B )
129 set( DEFAULT_CXX_FLAGS "${DEFAULT_CXX_FLAGS} -Wno-deprecated" )
130 else()
131 set( DEFAULT_CXX_FLAGS "${DEFAULT_CXX_FLAGS} -Wno-deprecated -Woverloaded-virtual" )
132 endif()
133endif()
134
135# set flags for cpp compiler
136set( CMAKE_CXX_FLAGS ${DEFAULT_CXX_FLAGS} )
137
138
139#
140# casacore definitions
141#
142set( CASACORE_DEFINITIONS ${CASACORE_DEFINITIONS}
143 -DCASA_USECASAPATH
144 -DCASACORE_NEEDS_RETHROW
145 -DAIPS_STDLIB
146 -DAIPS_AUTO_STL
147 -D_GNU_SOURCE )
148
149if( CMAKE_SYSTEM_NAME STREQUAL Linux )
150 set( CASACORE_DEFINITIONS ${CASACORE_DEFINITIONS}
151 -D_FILE_OFFSET_BITS=64
152 -D_LARGEFILE_SOURCE
153 )
154endif()
155
156add_definitions( ${CASACORE_DEFINITIONS} )
157
158#
159# mode specific settings
160#
161# STANDALONE=ON standalone build
162# STANDALONE=OFF build with casa
163#
164set( CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_SOURCE_DIR}/cmake" )
165message( STATUS "CMAKE_MODULE_PATH = " ${CMAKE_MODULE_PATH} )
166if( STANDALONE )
167 include( standalone )
168else()
169 include( withcasa )
170endif()
171
172message( STATUS "CMAKE_INSTALL_PREFIX = " ${CMAKE_INSTALL_PREFIX} )
173
174
175#
176# casacore
177#
178unset( CASACORE_INCLUDE_DIR CACHE )
179unset( CASACORE_LIBRARIES CACHE )
180if( NOT USE_LIBCASACORE )
181 # use casacore libraries
182 set( _includename casa/aipsdef.h )
183 find_path( CASACORE_INCLUDE_DIR ${_includename}
184 PATHS ${CASACORE_PATHS}
185 PATH_SUFFIXES include include/casacore
186 NO_DEFAULT_PATH )
187 find_path( CASACORE_INCLUDE_DIR ${_includename} )
188 if( CASACORE_INCLUDE_DIR MATCHES "NOTFOUND$" )
189 message( FATAL_ERROR "${_includename} could not be found. Please check!" )
190 endif()
191 set( CASACORE_LIBS casa
192 components
193 coordinates
194 fits
195 images
196 lattices
197 measures
198 mirlib
199 ms
200 msfits
201 scimath
202 scimath_f
203 tables )
204 set( _casacore_libs "" )
205 foreach( _a ${CASACORE_LIBS} )
206 set( _libname libcasa_${_a}.${SO} )
207 unset( _casacore_lib CACHE )
208 find_library( _casacore_lib ${_libname}
209 PATHS ${CASACORE_PATHS}
210 PATH_SUFFIXES lib64 lib )
211 if( _casacore_lib MATCHES "NOTFOUND$" )
212 message( FATAL_ERROR "${_libname} could not be found. Please check!" )
213 else()
214 #list( APPEND _casacore_libs casa_${_a} )
215 list( APPEND _casacore_libs ${_casacore_lib} )
216 endif()
217 endforeach()
218 set( CASACORE_LIBRARIES ${_casacore_libs} )
219else()
220 # use libcasacore
221 set( _libname libcasacore.${SO} )
222 find_library( CASACORE_LIBRARIES ${_libname}
223 PATHS ${CASACORE_PATHS}
224 PATH_SUFFIXES lib64 lib )
225 if( CASACORE_LIBRARIES MATCHES "NOTFOUND$" )
226 message( FATAL_ERROR "${_libname} could not be found. Please check!" )
227 endif()
228 set( _includename casa/aipsdef.h )
229 string( REGEX REPLACE /[^/]+/[^/]+/?$ "" _coreroot ${CASACORE_LIBRARIES} )
230 find_path( CASACORE_INCLUDE_DIR ${_includename}
231 PATHS ${_coreroot}
232 PATH_SUFFIXES include include/casacore
233 NO_DEFAULT_PATH )
234 find_path( CASACORE_INCLUDE_DIR ${_includename}
235 PATHS ${CASACORE_PATHS}
236 PATH_SUFFIXES include include/casacore
237 NO_DEFAULT_PATH )
238 find_path( CASACORE_INCLUDE_DIR ${_includename} )
239 if( CASACORE_INCLUDE_DIR MATCHES "NOTFOUND$" )
240 message( FATAL_ERROR "${_includename} could not be found. Please check!" )
241 endif()
242endif()
243message( STATUS "CASACORE_LIBRARIES = " ${CASACORE_LIBRARIES} )
244message( STATUS "CASACORE_INCLUDE_DIR = " ${CASACORE_INCLUDE_DIR} )
245unset( USE_LIBCASACORE CACHE )
246
247
248#
249# Python
250#
251if( STANDALONE )
252 include( FindPythonLibs )
253 if( NOT PYTHONLIBS_FOUND )
254 message( FATAL_ERROR "Python could not be found. Please check!" )
255 endif()
256
257 # Define pyroot
258 string( REGEX REPLACE "/[^/]+/[^/]+/?$" "" pyroot ${PYTHON_INCLUDE_DIRS} )
259
260 # find numpy
261 string( REGEX MATCH [0-9].[0-9] PYTHONV ${PYTHON_INCLUDE_DIRS} )
262 string( REPLACE "." "" PV ${PYTHONV} )
263 find_path( NUMPY_INCLUDE_DIR numpy/npy_interrupt.h
264 PATHS
265 ${pyroot}/lib/python${PYTHONV}/site-packages/numpy/core
266 ${pyroot}/Library/Frameworks/Python.framework/Versions/${PYTHONV}
267 ${pyroot}/Library/Frameworks/Python.framework/Versions/${PYTHONV}/lib/python${PYTHONV}/site-packages/numpy/core
268 PATH_SUFFIXES include )
269 if( NUMPY_INCLUDE_DIR MATCHES "NOTFOUND$" )
270 message( FATAL_ERROR "numpy/npy_interrupt.h could not be found. Please check!" )
271 endif()
272 list( APPEND PYTHON_INCLUDE_DIRS ${NUMPY_INCLUDE_DIR} )
273
274 set( PYTHON_DEFINITIONS ${PYTHON_DEFINITIONS}
275 -DPYTHONROOT=\"${pyroot}\"
276 -DPYTHONVER=\"${PYTHONV}\"
277 -DPYVERSION=${PV} )
278else()
279 # with CASA
280 if( NOT PYTHON_FOUND )
281 if ( NOT PYTHON_LIBNAME )
282 #set( _names 2.9 2.8 2.7 2.6 2.5.2 2.5 )
283 set( _names 2.6 2.5.2 2.5 )
284 # OSX 10.7 has Python2.7 by default. CASA has't yet supported python > 2.6 anyway.
285 # (The library named libpython.2.5.2.dylib seems to exist only in the CASA world.)
286 else()
287 set( _names ${PYTHON_LIBNAME} )
288 endif()
289
290 set( _found False )
291 foreach( _v ${_names} )
292
293 casa_find(
294 PYTHON${_v}
295 #PREFIX_HINTS ${PYTHON_ROOT_DIR}
296 LIBS python${_v}
297 NO_REQUIRE
298 )
299
300 if( PYTHON${_v}_FOUND )
301 set( PYTHON_LIBNAME ${_v} )
302 set( _found True )
303 break()
304 endif()
305
306 endforeach()
307
308 if( NOT _found )
309 message( FATAL_ERROR "Could not find any PYTHON library with version one of ${_names}. Please check!" )
310 endif()
311
312 endif()
313
314 if( NOT PYTHON_LIBNAME )
315 # Found Python, but PYTHON_LIBNAME is undefined, that is impossible.
316 message( FATAL_ERROR "The variable PYTHON_LIBNAME is undefined. Most likely, CMake's cache is out of date and you need to redetect your PYTHON installation (\"cmake -U PYTHON*\")")
317 endif()
318
319 string( SUBSTRING ${PYTHON_LIBNAME} 0 3 PYTHONV )
320 string( REPLACE "." "" PV ${PYTHONV} )
321 set( python_library python${PYTHON_LIBNAME} )
322
323 # Form the Python install prefix by stripping away "lib/libpython2.5.2.dylib" (example) from
324 # the full python library path
325 string( REGEX MATCH "/lib(64)?/lib${python_library}" _match ${PYTHON${PYTHON_LIBNAME}_LIBRARIES} )
326 if( _match )
327 string( REGEX REPLACE "/lib(64)?/lib${python_library}.*" "" python_prefix ${PYTHON${PYTHON_LIBNAME}_LIBRARIES} )
328 else()
329 # Python library was not in a lib(64) directory!
330 message( WARNING "Python library path \"${PYTHON${PYTHON_LIBNAME}_LIBRARIES}\" does not contain \"/lib(64)/lib${python_library}\"" )
331 set( python_prefix ${casa_packages} )
332 endif()
333
334 #
335 # For some unknown reason cmake sets the /usr for Lion
336 #
337 if( APPLE )
338 set( python_prefix ${casa_packages} )
339 endif()
340
341 # The python version and prefix is known, do the actual search
342 if( NOT PYTHON_FOUND )
343 message( STATUS "Looking for PYTHON version ${PYTHONV}.x in ${python_prefix}" )
344 endif()
345
346 casa_find( PYTHON
347 VERSION 2.5 # minimum required
348 INCLUDES Python.h
349 numpy/npy_interrupt.h # for numpy
350 INCLUDES_SUFFIXES python${PYTHONV}
351 PREFIX_HINTS
352 ${python_prefix}/lib/python${PYTHONV}/site-packages/numpy/core
353 ${python_prefix}/Library/Frameworks/Python.framework/Versions/${PYTHONV}
354 ${python_prefix}/Library/Frameworks/Python.framework/Versions/${PYTHONV}/lib/python${PYTHONV}/site-packages/numpy/core
355 LIBS ${python_library}
356 CPP_VERSION PY_VERSION )
357
358 # Store PYTHON_LIBNAME in the cache
359 set( PYTHON_LIBNAME ${PYTHON_LIBNAME} CACHE STRING "Python major and minor version to use" FORCE )
360
361 # Define pyroot to two directory levels above Python.h.
362 string( REGEX REPLACE "/[^/]+/[^/]+/?$" "" pyroot ${PYTHON_Python.h} )
363
364 set( PYTHON_DEFINITIONS ${PYTHON_DEFINITIONS}
365 -DAIPSROOT=\"${CMAKE_SOURCE_DIR}\"
366 -DAIPSARCH=\"${arch}\"
367 -DAIPSSITE=\"garching\"
368 -DPYTHONROOT=\"${pyroot}\"
369 -DPYTHONVER=\"${PYTHONV}\"
370 -DPYVERSION=${PV} )
371endif()
372message( STATUS "PYTHON_INCLUDE_DIRS = " ${PYTHON_INCLUDE_DIRS} )
373message( STATUS "PYTHON_LINRARIES = " ${PYTHON_LIBRARIES} )
374message( STATUS "PYTHONV = " ${PYTHONV} )
375
376
377#
378# DL
379#
380set( DL_LIBRARIES ${CMAKE_DL_LIBS} CACHE STRING "dl libraries" FORCE )
381if( DL_LIBRARIES STREQUAL "dl" )
382 set( DL_LIBRARIES "-ldl" CACHE STRING "dl libraries" FORCE )
383endif()
384message( STATUS "DL_LIBRARIES = " ${DL_LIBRARIES} )
385
386
387#
388# BLAS
389#
390find_library( BLAS_LIBRARIES libblas.${SO} )
391if ( BLAS_LIBRARIES MATCHES "NOTFOUND$" )
392 message( FATAL_ERROR "blas could not be found. Please check!" )
393endif()
394message( STATUS "BLAS_LIBRARIES = " ${BLAS_LIBRARIES} )
395
396
397#
398# LAPACK
399#
400find_library( LAPACK_LIBRARIES liblapack.${SO} )
401if ( LAPACK_LIBRARIES MATCHES "NOTFOUND$" )
402 message( FATAL_ERROR "lapack could not be found. Please check!" )
403endif()
404message( STATUS "LAPACK_LIBRARIES = " ${LAPACK_LIBRARIES} )
405
406
407#
408# Boost
409#
410set( boost_components python )
411if( NOT STANDALONE )
412 set( boost_components ${boost_components} system )
413endif()
414find_package( Boost REQUIRED ${boost_components} )
415if( NOT Boost_FOUND )
416 message( FATAL_ERROR "Boost could not be found. Please check!" )
417endif()
418message( STATUS "BOOST_INCLUDE_DIR = " ${Boost_INCLUDE_DIR} )
419message( STATUS "BOOST_LIBRARIES = " ${Boost_LIBRARIES} )
420
421
422#
423# Qt4 4.3.4 or later
424#
425find_package( Qt4 4.3.4
426 COMPONENTS QtCore QtGui )
427if( NOT QT4_FOUND )
428 message( FATAL_ERROR "Qt4 could not be found. Please check!" )
429endif()
430set( QT4_INCLUDE_DIRS ${QT_INCLUDES} CACHE PATH "QT4 include directories" FORCE )
431set( QT4_DEFINITIONS ${QT_DEFINITIONS} -DQT_NO_DEBUG CACHE STRING "QT4 preprocessor flags" FORCE )
432set( QT4_LIBRARIES
433 ${QT_QTCORE_LIBRARY}
434 ${QT_QTGUI_LIBRARY}
435 CACHE FILEPATH "QT4 libraries" FORCE )
436list( REMOVE_ITEM QT4_LIBRARIES "optimized" )
437list( REMOVE_ITEM QT4_LIBRARIES "debug" )
438message( STATUS "QT4_INCLUDE_DIRS = " ${QT4_INCLUDE_DIRS} )
439message( STATUS "QT4_DEFINITIONS = " ${QT4_DEFINITIONS} )
440message( STATUS "QT4_LIBRARIES = " ${QT4_LIBRARIES} )
441
442
443#
444# cfitsio
445#
446if( STANDALONE )
447 find_path( CFITSIO_INCLUDE_DIRS fitsio.h
448 PATH_SUFFIXES cfitsio )
449 if( CFITSIO_INCLUDE_DIRS MATCHES "NOTFOUND$" )
450 message( FATAL_ERROR "fitsio.h could not be found. Please check!" )
451 endif()
452 string( REGEX REPLACE "/[^/]+/?$" "" CFITSIO_ROOT ${CFITSIO_INCLUDE_DIRS} )
453 message( STATUS "CFITSIO_ROOT=" ${CFITSIO_ROOT} )
454 find_library( CFITSIO_LIBRARIES libcfitsio.${SO}
455 PATHS ${CFITSIO_ROOT}
456 PATH_SUFFIXES lib64 lib
457 NO_DEFAULT_PATH )
458 if( CFITSIO_LIBRARIES MATCHES "NOTFOUND$" )
459 find_library( CFITSIO_LIBRARIES libcfitsio.a
460 PATHS ${CFITSIO_ROOT}
461 PATH_SUFFIXES lib64 lib
462 NO_DEFAULT_PATH )
463 endif()
464 find_library( CFITSIO_LIBRARIES libcfitsio.${SO}
465 PATHS /usr/local /usr
466 PATH_SUFFIXES lib64 lib )
467 if( CFITSIO_LIBRARIES MATCHES "NOTFOUND$" )
468 message( FATAL_ERROR "libcfitsio.so could not be found. Please check!" )
469 endif()
470else()
471 casa_find( CFITSIO
472 VERSION 3.006
473 INCLUDES fitsio.h fitsio2.h
474 INCLUDES_SUFFIXES cfitsio
475 LIBS cfitsio
476 CPP_VERSION CFITSIO_VERSION
477 RUN_VERSION "(ffvers(&v), v)" )
478endif()
479message( STATUS "CFITSIO_INCLUDE_DIRS = " ${CFITSIO_INCLUDE_DIRS} )
480message( STATUS "CFITSIO_LIBRARIES = " ${CFITSIO_LIBRARIES} )
481
482
483#
484# Fortran
485#
486if( NOT FORTRAN_LIBRARIES )
487
488 message( STATUS "Looking for Fortran runtime libraries" )
489 set( _try ${CMAKE_BINARY_DIR}/try_fortran.cc )
490 file( WRITE ${_try}
491 "int main() { return 0; }\n"
492 )
493
494 if( _gfortran_lib_path )
495 try_compile( _have_gfortran ${CMAKE_BINARY_DIR} ${_try}
496 CMAKE_FLAGS -Wdev "-DCMAKE_EXE_LINKER_FLAGS=${_gfortran_lib_path}"
497 )
498 else()
499 try_compile( _have_gfortran ${CMAKE_BINARY_DIR} ${_try}
500 CMAKE_FLAGS -Wdev "-DCMAKE_EXE_LINKER_FLAGS=-lgfortran"
501 )
502 endif()
503 try_compile( _have_g2c ${CMAKE_BINARY_DIR} ${_try}
504 CMAKE_FLAGS -Wdev "-DCMAKE_EXE_LINKER_FLAGS=-lg2c"
505 )
506
507 if( _have_gfortran )
508 if( _gfortran_lib_path )
509 set( FORTRAN_LIBRARIES ${_gfortran_lib_path}
510 CACHE STRING "Fortran library linker option" FORCE )
511 else()
512 set( FORTRAN_LIBRARIES -lgfortran
513 CACHE STRING "Fortran library linker option" FORCE )
514 endif()
515 message( STATUS "Looking for Fortran runtime libraries -- ${FORTRAN_LIBRARIES}" )
516 elseif( _have_g2c )
517 set( FORTRAN_LIBRARIES -lg2c
518 CACHE STRING "Fortran library linker option" FORCE )
519 message( STATUS "Looking for Fortran runtime libraries -- ${FORTRAN_LIBRARIES}" )
520 else()
521 set( FORTRAN_LIBRARIES ""
522 CACHE STRING "Fortran library linker option" FORCE )
523 message( STATUS "Looking for Fortran runtime libraries -- <none>" )
524 # Not a fatal error because it might work, if all Fortran dependencies were
525 # already linked statically to the Fortran runtime...
526 endif()
527endif()
528
529
530#
531# RPFITS
532#
533if ( STANDALONE )
534 find_path( RPFITS_INCLUDE_DIRS RPFITS.h
535 PATHS /usr/local /usr
536 PATH_SUFFIXES include )
537 if( RPFITS_INCLUDE_DIRS MATCHES "NOTFOUND$" )
538 message( FATAL_ERROR "RPFITS.h could not be found. Please check!" )
539 endif()
540 find_library( RPFITS_LIBRARIES librpfits.so
541 PATHS /usr/local /usr
542 PATH_SUFFIXES lib64 lib )
543 if( RPFITS_LIBRARIES MATCHES "NOTFOUND$" )
544 message( FATAL_ERROR "librpfits.so could not be found. Please check!" )
545 endif()
546 list( APPEND RPFITS_LIBRARIES ${FORTRAN_LIBRARIES} )
547else()
548 casa_find( RPFITS
549 VERSION 2.11
550 INCLUDES RPFITS.h
551 LIBS rpfits
552 RUN_VERSION names_.rpfitsversion
553 DEPENDS FORTRAN )
554endif()
555message( STATUS "RPFITS_INCLUDE_DIRS = " ${RPFITS_INCLUDE_DIRS} )
556message( STATUS "RPFITS_LIBRARIES = " ${RPFITS_LIBRARIES} )
557
558
559#
560# wcslib
561#
562set( _wcslib libwcs.${SO} )
563set( _wcs_version 4.3 )
564find_library( WCSLIB ${_wcslib}
565 PATHS ${WCSLIB_PATHS}
566 PATH_SUFFIXES lib64 lib )
567if( WCSLIB MATCHES "NOTFOUND$" )
568 message( STATUS "${_wcslib} could not be found." )
569 unset( _wcslib CACHE )
570 unset( WCSLIB CACHE )
571 set( _wcslib libwcs.${_wcs_version}.${SO} )
572 message( STATUS "Try to find ${_wcslib}..." )
573 find_library( WCSLIB ${_wcslib}
574 PATHS ${WCSLIB_PATHS}
575 PATH_SUFFIXES lib64 lib )
576 if( WCSLIB MATCHES "NOTFOUND$" )
577 message( FATAL_ERROR "${_wcslib} could not be found. Please check!" )
578 endif()
579endif()
580message( STATUS "WCSLIB = " ${WCSLIB} )
581find_path( WCSLIB_INCLUDE_DIR wcslib/wcs.h
582 PATHS ${WCSLIB_PATHS}
583 PATH_SUFFIXES include )
584if( WCSLIB_INCLUDE_DIR MATCHES "NOTFOUND$" )
585 message( FATAL_ERROR "wcs.h could not be found. Please check!" )
586endif()
587message( STATUS "WCSLIB_INCLUDE_DIR = " ${WCSLIB_INCLUDE_DIR} )
588
589
590#
591# common include path
592#
593include_directories( ${CASACORE_INCLUDE_DIR}
594 ${Boost_INCLUDE_DIR}
595 ${QT4_INCLUDE_DIRS}
596 ${PYTHON_INCLUDE_DIRS}
597 ${WCSLIB_INCLUDE_DIR}
598 ${CFITSIO_INCLUDE_DIRS}
599 ${RPFITS_INCLUDE_DIRS} )
600
601
602#
603# install directory
604#
605set( EXEC_INSTALL_DIR bin )
606set( LIB_INSTALL_DIR lib )
607set( PYTHON_INSTALL_DIR python/${PYTHONV}/asap )
608set( SHARED_INSTALL_DIR share/asap )
609
610#
611# execute getsvnrev.sh to create/update svninfo.txt
612# run chmod to make sure the script has executable
613#
614exec_program( chmod ARGS a+x ${ASAP_SOURCE_DIR}/getsvnrev.sh )
615exec_program( chmod ARGS a+x ${ASAP_SOURCE_DIR}/cmake/exec_getsvnrev.sh )
616exec_program( ${ASAP_SOURCE_DIR}/cmake/exec_getsvnrev.sh ARGS ${ASAP_SOURCE_DIR})
617
618# Add the modules to be built.
619#
620# Choose to have correct RPATHs both in the build tree and
621# in the install tree (at the cost of having to change the
622# rpath when installing)
623#
624set( CMAKE_INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/lib )
625set( CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
626set( CMAKE_INSTALL_NAME_DIR ${CMAKE_INSTALL_PREFIX}/lib )
627
628#
629# PKSMS
630#
631if ( NOT PKSMS )
632 add_definitions( -DNOPKSMS )
633endif()
634
635#
636# libraries and executables
637#
638set( ASAPPYLIB _asap )
639set( ASAPLIB asap )
640set( PYRAPLIB pyrap )
641set( ATNFLIB atnf )
642set( ASAP2TO3 asap2to3 )
643if ( NOT STANDALONE )
644# set( ASDM2ASAP_OLD oldasdm2ASAP )
645 set( ASDM2ASAP asdm2ASAP )
646endif()
647
648#
649# always install by default
650#
651add_custom_target( inst ALL ${CMAKE_BUILD_TOOL} install/fast )
652
653#
654# subdirectories
655#
656asap_add_subdirectory()
Note: See TracBrowser for help on using the repository browser.