source: trunk/apps/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: 523 bytes
RevLine 
[1954]1###
2# CMakeLists.txt for asap2to3
3###
4
5# source code
6set( EXEC_SRC asap2to3.cpp )
7
8# add executable
9add_executable( ${ASAP2TO3} ${EXEC_SRC} )
10
11# dependencies
[1960]12target_link_libraries( ${ASAP2TO3}
13                       ${CASACORE_LIBRARIES}
[3035]14                       ${PYTHON_LIBRARIES}
[1960]15                       ${DL_LIBRARIES}
16                       ${BLAS_LIBRARIES}
17                       ${LAPACK_LIBRARIES} )
[1966]18add_dependencies( inst ${ASAP2TO3} )
[1954]19
20# install
[1959]21install( TARGETS ${ASAP2TO3}
[3035]22         RUNTIME DESTINATION ${EXEC_INSTALL_DIR} )
Note: See TracBrowser for help on using the repository browser.