source: trunk/external-alma/oldasdm2ASAP/CMakeLists.txt @ 2273

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

New Development: No

JIRA Issue: Yes CAS-1913

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: Describe your changes here...

Support latest ASDM definition in asdm2ASAP.
Now asdm2ASAP is linked to libalma_v3.so to be able to read latest ASDM.

The importasdm task invokes asdm2ASAP when singledish is True.

Older version of asdm2ASAP is renamec as oldasdm2ASAP.
The oldasdm2ASAP and related classes are built by linking to libalma.so.
It is installed but not used by any tasks.


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