Last change
on this file since 2284 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
|
Rev | Line | |
---|
[2197] | 1 | ###
|
---|
| 2 | # CMakeLists.txt for asdm2asap
|
---|
| 3 | ###
|
---|
| 4 |
|
---|
| 5 | # additional include directories
|
---|
| 6 | set( ASAPROOT ${ASAP_SOURCE_DIR} )
|
---|
| 7 | include_directories( ${ASDM_INCLUDE_DIR}
|
---|
| 8 | ${ASAP_SOURCE_DIR}/src
|
---|
| 9 | ${ASAPROOT}/external-alma )
|
---|
| 10 |
|
---|
| 11 | # source code
|
---|
| 12 | set( EXEC_SRC ASDMReader.cc
|
---|
| 13 | ASDMFiller.cc
|
---|
| 14 | asdm2ASAP.cc )
|
---|
| 15 |
|
---|
| 16 | # add executable
|
---|
| 17 | add_executable( ${ASDM2ASAP} ${EXEC_SRC} )
|
---|
| 18 |
|
---|
| 19 | # dependencies
|
---|
| 20 | target_link_libraries( ${ASDM2ASAP} ${ASDM_LIBRARY}
|
---|
| 21 | ${ASAPLIB} )
|
---|
| 22 | add_dependencies( inst ${ASDM2ASAP} )
|
---|
| 23 |
|
---|
| 24 | # install
|
---|
| 25 | install( TARGETS ${ASDM2ASAP}
|
---|
| 26 | RUNTIME DESTINATION ${EXEC_INSTALL_DIR} ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.