Changeset 3014 for trunk


Ignore:
Timestamp:
11/19/14 05:09:23 (9 years ago)
Author:
TakTsutsumi
Message:

New Development: No

JIRA Issue: Yes, maybe CAS-6739?

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: ASAP CMakeLists mod from Dave for the components module

relocation


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r3006 r3014  
    191191   set( CASACORE_LIBS casa
    192192                      coordinates
    193                       components
    194193                      fits
    195194                      images
     
    216215      endif()
    217216   endforeach()
     217   set ( _libname libcomponents.${SO} )
     218   unset( _casacore_lib CACHE )
     219   find_library( _casacore_lib ${_libname}
     220             PATHS ${CASACORE_PATHS}
     221              PATH_SUFFIXES lib64 lib )
     222   if( _casacore_lib MATCHES "NOTFOUND$" )
     223       message( FATAL_ERROR "${_libname} could not be found. Please check!" )
     224   else()
     225       list( APPEND _casacore_libs ${_casacore_lib} )
     226   endif()
    218227   set( CASACORE_LIBRARIES ${_casacore_libs} )
    219228else()
Note: See TracChangeset for help on using the changeset viewer.