Last change
on this file since 1952 was 1952, checked in by Takeshi Nakazato, 14 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:
1.1 KB
|
Line | |
---|
1 | ###
|
---|
2 | # CMakeLists.txt for python modules
|
---|
3 | ###
|
---|
4 |
|
---|
5 | # root for python
|
---|
6 | set( PYTHONROOT ${ASAP_SOURCE_DIR} )
|
---|
7 | set( PYTHONDIR ${PYTHONROOT}/python )
|
---|
8 |
|
---|
9 | # python modules
|
---|
10 | set( PYTHON_MODULES
|
---|
11 | ${PYTHONDIR}/asapfit.py
|
---|
12 | ${PYTHONDIR}/asapfitter.py
|
---|
13 | ${PYTHONDIR}/asaplinefind.py
|
---|
14 | ${PYTHONDIR}/asaplotbase.py
|
---|
15 | ${PYTHONDIR}/asaplotgui_gtk.py
|
---|
16 | ${PYTHONDIR}/asaplotgui.py
|
---|
17 | ${PYTHONDIR}/asaplotgui_qt4.py
|
---|
18 | ${PYTHONDIR}/asaplot.py
|
---|
19 | ${PYTHONDIR}/asapmath.py
|
---|
20 | ${PYTHONDIR}/asapplotter.py
|
---|
21 | ${PYTHONDIR}/casatoolbar.py
|
---|
22 | ${PYTHONDIR}/compatibility.py
|
---|
23 | ${PYTHONDIR}/coordinate.py
|
---|
24 | ${PYTHONDIR}/env.py
|
---|
25 | ${PYTHONDIR}/__init__.py
|
---|
26 | ${PYTHONDIR}/interactivemask.py
|
---|
27 | ${PYTHONDIR}/ipysupport.py
|
---|
28 | ${PYTHONDIR}/lagflagger.py
|
---|
29 | ${PYTHONDIR}/linecatalog.py
|
---|
30 | ${PYTHONDIR}/logging.py
|
---|
31 | ${PYTHONDIR}/notationwindow.py
|
---|
32 | ${PYTHONDIR}/opacity.py
|
---|
33 | ${PYTHONDIR}/parameters.py
|
---|
34 | ${PYTHONDIR}/scantable.py
|
---|
35 | ${PYTHONDIR}/selector.py
|
---|
36 | ${PYTHONDIR}/simplelinefinder.py
|
---|
37 | ${PYTHONDIR}/utils.py )
|
---|
38 |
|
---|
39 | install( PROGRAMS ${PYTHON_MODULES}
|
---|
40 | DESTINATION ${PYTHON_INSTALL_DIR} )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.