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

Last change on this file since 2197 was 2197, checked in by Takeshi Nakazato, 13 years ago

New Development: Yes

JIRA Issue: Yes CAS-1913

Ready for Test: No

Interface Changes: Yes/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: Describe your changes here...

Prototype program asdm2ASAP that converts ASDM into Scantable directory.
Since top-level CMakeLists.txt is not yet updated, those codes will not
be built at the moment.

File size: 651 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} ${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.