source: branches/plotter2/CMakeLists.txt@ 2838

Last change on this file since 2838 was 2825, checked in by WataruKawasaki, 11 years ago

New Development: Yes

JIRA Issue: Yes (CAS-3620)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: Yes

Module(s): sd

Description: add a new sd module sd.plotter2, a new lightweight plotter based on pgplot.


File size: 21.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# cfitsio
424#
425if( STANDALONE )
426 find_path( CFITSIO_INCLUDE_DIRS fitsio.h
427 PATH_SUFFIXES cfitsio )
428 if( CFITSIO_INCLUDE_DIRS MATCHES "NOTFOUND$" )
429 message( FATAL_ERROR "fitsio.h could not be found. Please check!" )
430 endif()
431 string( REGEX REPLACE "/[^/]+/?$" "" CFITSIO_ROOT ${CFITSIO_INCLUDE_DIRS} )
432 message( STATUS "CFITSIO_ROOT=" ${CFITSIO_ROOT} )
433 find_library( CFITSIO_LIBRARIES libcfitsio.${SO}
434 PATHS ${CFITSIO_ROOT}
435 PATH_SUFFIXES lib64 lib
436 NO_DEFAULT_PATH )
437 if( CFITSIO_LIBRARIES MATCHES "NOTFOUND$" )
438 find_library( CFITSIO_LIBRARIES libcfitsio.a
439 PATHS ${CFITSIO_ROOT}
440 PATH_SUFFIXES lib64 lib
441 NO_DEFAULT_PATH )
442 endif()
443 find_library( CFITSIO_LIBRARIES libcfitsio.${SO}
444 PATHS /usr/local /usr
445 PATH_SUFFIXES lib64 lib )
446 if( CFITSIO_LIBRARIES MATCHES "NOTFOUND$" )
447 message( FATAL_ERROR "libcfitsio.so could not be found. Please check!" )
448 endif()
449else()
450 casa_find( CFITSIO
451 VERSION 3.006
452 INCLUDES fitsio.h fitsio2.h
453 INCLUDES_SUFFIXES cfitsio
454 LIBS cfitsio
455 CPP_VERSION CFITSIO_VERSION
456 RUN_VERSION "(ffvers(&v), v)" )
457endif()
458message( STATUS "CFITSIO_INCLUDE_DIRS = " ${CFITSIO_INCLUDE_DIRS} )
459message( STATUS "CFITSIO_LIBRARIES = " ${CFITSIO_LIBRARIES} )
460
461
462#
463# Fortran
464#
465if( NOT FORTRAN_LIBRARIES )
466
467 message( STATUS "Looking for Fortran runtime libraries" )
468 set( _try ${CMAKE_BINARY_DIR}/try_fortran.cc )
469 file( WRITE ${_try}
470 "int main() { return 0; }\n"
471 )
472
473 if( _gfortran_lib_path )
474 try_compile( _have_gfortran ${CMAKE_BINARY_DIR} ${_try}
475 CMAKE_FLAGS -Wdev "-DCMAKE_EXE_LINKER_FLAGS=${_gfortran_lib_path}"
476 )
477 else()
478 try_compile( _have_gfortran ${CMAKE_BINARY_DIR} ${_try}
479 CMAKE_FLAGS -Wdev "-DCMAKE_EXE_LINKER_FLAGS=-lgfortran"
480 )
481 endif()
482 try_compile( _have_g2c ${CMAKE_BINARY_DIR} ${_try}
483 CMAKE_FLAGS -Wdev "-DCMAKE_EXE_LINKER_FLAGS=-lg2c"
484 )
485
486 if( _have_gfortran )
487 if( _gfortran_lib_path )
488 set( FORTRAN_LIBRARIES ${_gfortran_lib_path}
489 CACHE STRING "Fortran library linker option" FORCE )
490 else()
491 set( FORTRAN_LIBRARIES -lgfortran
492 CACHE STRING "Fortran library linker option" FORCE )
493 endif()
494 message( STATUS "Looking for Fortran runtime libraries -- ${FORTRAN_LIBRARIES}" )
495 elseif( _have_g2c )
496 set( FORTRAN_LIBRARIES -lg2c
497 CACHE STRING "Fortran library linker option" FORCE )
498 message( STATUS "Looking for Fortran runtime libraries -- ${FORTRAN_LIBRARIES}" )
499 else()
500 set( FORTRAN_LIBRARIES ""
501 CACHE STRING "Fortran library linker option" FORCE )
502 message( STATUS "Looking for Fortran runtime libraries -- <none>" )
503 # Not a fatal error because it might work, if all Fortran dependencies were
504 # already linked statically to the Fortran runtime...
505 endif()
506endif()
507
508# X11.
509if( NOT APPLE )
510 find_package( X11 REQUIRED )
511 # Rename
512 set( X11_INCLUDE_DIRS ${X11_INCLUDE_DIR} )
513endif()
514
515# PGPLOT (FORTRAN plotting package).
516# depends on X11
517if( STANDALONE )
518 ############
519 find_path( PGPLOT_INCLUDE_DIRS cpgplot.h
520 PATHS /usr
521 PATH_SUFFIXES include )
522 if( PGPLOT_INCLUDE_DIRS MATCHES "NOTFOUND$" )
523 message( FATAL ERROR "cpgplot.h could not be found. Please check!" )
524 endif()
525 find_library( CPGPLOT_LIB libcpgplot.${SO}
526 PATHS /usr
527 PATH_SUFFIXES lib64 lib )
528 if( CPGPLOT_LIB MATCHES "NOTFOUND$" )
529 message( FATAL ERROR "libcpgplot could not be found. Please check!" )
530 endif()
531 find_library( PGPLOT_LIB libpgplot.${SO}
532 PATHS /usr
533 PATH_SUFFIXES lib64 lib )
534 if( PGPLOT_LIB MATCHES "NOTFOUND$" )
535 message( FATAL ERROR "libpgplot could not be found. Please check!" )
536 endif()
537 set( PGPLOT_LIBRARIES "${CPGPLOT_LIB} ${PGPLOT_LIB} ${X11_LIBRARIES} ${FORTRAN_LIBRARIES} " )
538 ############
539else()
540 if( APPLE )
541 set( _deps FORTRAN )
542 else()
543 set( _deps X11 FORTRAN )
544 endif()
545 if (CMAKE_SYSTEM MATCHES ^Darwin-11 AND NOT LLVMCOMPILER )
546 set( CMAKE_SHARED_LINKER_FLAGS "-Wl,-undefined -Wl,error -framework AppKit -lgfortran" )
547 else()
548 if (APPLE)
549 set( CMAKE_SHARED_LINKER_FLAGS "-Wl,-undefined -Wl,error -framework AppKit" )
550 else()
551 set( CMAKE_SHARED_LINKER_FLAGS "-Wl,-undefined -Wl,error" )
552 endif()
553 endif()
554 casa_find( PGPLOT
555 VERSION 5.3.1
556 PREFIX_HINTS ${PGPLOT_ROOT_DIR}
557 INCLUDES cpgplot.h
558 LIBS pgplot${pgplot_ext} cpgplot${pgplot_ext}
559 DEPENDS ${_deps} )
560endif()
561
562#
563# RPFITS
564#
565if ( STANDALONE )
566 find_path( RPFITS_INCLUDE_DIRS RPFITS.h
567 PATHS /usr/local /usr
568 PATH_SUFFIXES include )
569 if( RPFITS_INCLUDE_DIRS MATCHES "NOTFOUND$" )
570 message( FATAL_ERROR "RPFITS.h could not be found. Please check!" )
571 endif()
572 find_library( RPFITS_LIBRARIES librpfits.so
573 PATHS /usr/local /usr
574 PATH_SUFFIXES lib64 lib )
575 if( RPFITS_LIBRARIES MATCHES "NOTFOUND$" )
576 message( FATAL_ERROR "librpfits.so could not be found. Please check!" )
577 endif()
578 list( APPEND RPFITS_LIBRARIES ${FORTRAN_LIBRARIES} )
579else()
580 casa_find( RPFITS
581 VERSION 2.11
582 INCLUDES RPFITS.h
583 LIBS rpfits
584 RUN_VERSION names_.rpfitsversion
585 DEPENDS FORTRAN )
586endif()
587message( STATUS "RPFITS_INCLUDE_DIRS = " ${RPFITS_INCLUDE_DIRS} )
588message( STATUS "RPFITS_LIBRARIES = " ${RPFITS_LIBRARIES} )
589
590
591#
592# wcslib
593#
594set( _wcslib libwcs.${SO} )
595set( _wcs_version 4.3 )
596find_library( WCSLIB ${_wcslib}
597 PATHS ${WCSLIB_PATHS}
598 PATH_SUFFIXES lib64 lib )
599if( WCSLIB MATCHES "NOTFOUND$" )
600 message( STATUS "${_wcslib} could not be found." )
601 unset( _wcslib CACHE )
602 unset( WCSLIB CACHE )
603 set( _wcslib libwcs.${_wcs_version}.${SO} )
604 message( STATUS "Try to find ${_wcslib}..." )
605 find_library( WCSLIB ${_wcslib}
606 PATHS ${WCSLIB_PATHS}
607 PATH_SUFFIXES lib64 lib )
608 if( WCSLIB MATCHES "NOTFOUND$" )
609 message( FATAL_ERROR "${_wcslib} could not be found. Please check!" )
610 endif()
611endif()
612message( STATUS "WCSLIB = " ${WCSLIB} )
613find_path( WCSLIB_INCLUDE_DIR wcslib/wcs.h
614 PATHS ${WCSLIB_PATHS}
615 PATH_SUFFIXES include )
616if( WCSLIB_INCLUDE_DIR MATCHES "NOTFOUND$" )
617 message( FATAL_ERROR "wcs.h could not be found. Please check!" )
618endif()
619message( STATUS "WCSLIB_INCLUDE_DIR = " ${WCSLIB_INCLUDE_DIR} )
620
621
622#
623# common include path
624#
625include_directories( ${CASACORE_INCLUDE_DIR}
626 ${Boost_INCLUDE_DIR}
627 ${X11_INCLUDE_DIRS}
628 ${PGPLOT_INCLUDE_DIRS}
629 ${PYTHON_INCLUDE_DIRS}
630 ${WCSLIB_INCLUDE_DIR}
631 ${CFITSIO_INCLUDE_DIRS}
632 ${RPFITS_INCLUDE_DIRS} )
633
634
635#
636# install directory
637#
638set( EXEC_INSTALL_DIR bin )
639set( LIB_INSTALL_DIR lib )
640set( PYTHON_INSTALL_DIR python/${PYTHONV}/asap )
641set( SHARED_INSTALL_DIR share/asap )
642
643#
644# execute getsvnrev.sh to create/update svninfo.txt
645# run chmod to make sure the script has executable
646#
647exec_program( chmod ARGS a+x ${ASAP_SOURCE_DIR}/getsvnrev.sh )
648exec_program( chmod ARGS a+x ${ASAP_SOURCE_DIR}/cmake/exec_getsvnrev.sh )
649exec_program( ${ASAP_SOURCE_DIR}/cmake/exec_getsvnrev.sh ARGS ${ASAP_SOURCE_DIR})
650
651# Add the modules to be built.
652#
653# Choose to have correct RPATHs both in the build tree and
654# in the install tree (at the cost of having to change the
655# rpath when installing)
656#
657set( CMAKE_INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/lib )
658set( CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
659set( CMAKE_INSTALL_NAME_DIR ${CMAKE_INSTALL_PREFIX}/lib )
660
661#
662# PKSMS
663#
664if ( NOT PKSMS )
665 add_definitions( -DNOPKSMS )
666endif()
667
668#
669# libraries and executables
670#
671set( ASAPPYLIB _asap )
672set( ASAPLIB asap )
673set( PYRAPLIB pyrap )
674set( ATNFLIB atnf )
675set( ASAP2TO3 asap2to3 )
676if ( NOT STANDALONE )
677# set( ASDM2ASAP_OLD oldasdm2ASAP )
678 set( ASDM2ASAP asdm2ASAP )
679endif()
680
681#
682# always install by default
683#
684add_custom_target( inst ALL ${CMAKE_BUILD_TOOL} install/fast )
685
686#
687# subdirectories
688#
689asap_add_subdirectory()
Note: See TracBrowser for help on using the repository browser.