source: branches/asap4casa3.1.0/apps/CMakeLists.txt @ 1952

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

New Development: Yes

JIRA Issue: Yes CAS-2668

Ready for Test: No

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Describe your changes here...

First version of CMakeLists.txt for cmake system.
This is preliminary version that search path for some key external
libraries are hard coded. However, overall design would be fixed so far.


File size: 357 bytes
Line 
1###
2# CMakeLists.txt for asap2to3
3###
4
5# executable name is asap2to3
6set( ASAP2TO3 asap2to3 )
7
8# source code
9set( EXEC_SRC asap2to3.cpp )
10
11# add executable
12add_executable( ${ASAP2TO3} ${EXEC_SRC} )
13
14# dependencies
15target_link_libraries( ${ASAP2TO3} ${CASACORE_LIBRARIES} )
16
17# install
18install( PROGRAMS ${ASAP2TO3}
19         DESTINATION ${EXEC_INSTALL_DIR} )
Note: See TracBrowser for help on using the repository browser.