source: trunk/external-alma/asdm2ASAP/CMakeLists.txt @ 3035

Last change on this file since 3035 was 3035, checked in by Kana Sugimoto, 9 years ago

New Development: Yes

JIRA Issue: Yes (CAS-7383))

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s): asap

Description: use libcasa_python instead of pyrap in cmake.


File size: 671 bytes
Line 
1###
2# CMakeLists.txt for asdm2asap
3###
4
5# additional include directories
6set( ASAPROOT ${ASAP_SOURCE_DIR} )
7include_directories( ${ASDM_INCLUDE_DIR}
8                     ${ASAP_SOURCE_DIR}/src
9                     ${ASAPROOT}/external-alma )
10
11# source code
12set( EXEC_SRC ASDMReader.cc
13              ASDMFiller.cc
14              asdm2ASAP.cc )
15
16# add executable
17add_executable( ${ASDM2ASAP} ${EXEC_SRC} )
18
19# dependencies
20target_link_libraries( ${ASDM2ASAP} ${Boost_LIBRARIES} ${ASDM_LIBRARY}
21                                    ${ASAPLIB} )
22add_dependencies( inst ${ASDM2ASAP} )
23
24# install
25install( TARGETS ${ASDM2ASAP}
26         RUNTIME DESTINATION ${EXEC_INSTALL_DIR} )
Note: See TracBrowser for help on using the repository browser.