- Timestamp:
- 07/31/13 17:37:40 (11 years ago)
- Location:
- trunk/src
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/CMakeLists.txt
r2757 r2830 7 7 set( SRCDIR ${ASAPROOT}/src ) 8 8 9 # include QT_USE_FILE10 include( ${QT_USE_FILE} )11 12 9 # include path 13 10 include_directories( ${SRCDIR} 14 11 ${Boost_INCLUDE_DIR} 15 ${QT4_INCLUDE_DIRS}16 12 ${ASAPROOT}/external-alma 17 13 ${ASAPROOT}/external/libpyrap/pyrap-0.3.2 ) … … 25 21 # source files for libpyrap 26 22 set( ASAP_SRCS 27 #${SRCDIR}/Plotter2.cpp23 ${SRCDIR}/Plotter2.cpp 28 24 ${SRCDIR}/concurrent.cpp 29 25 ${SRCDIR}/MathUtils.cpp … … 85 81 86 82 set( ASAP_PYSRCS 87 #${SRCDIR}/python_Plotter2.cpp83 ${SRCDIR}/python_Plotter2.cpp 88 84 ${SRCDIR}/python_Scantable.cpp 89 85 ${SRCDIR}/python_STFiller.cpp … … 121 117 target_link_libraries( ${ASAPLIB} 122 118 #${Boost_LIBRARIES} 123 ${QT4_LIBRARIES} 119 ${X11_LIBRARIES} 120 ${PGPLOT_LIBRARIES} 124 121 ${PYRAPLIB} 125 122 ${ATNFLIB} -
trunk/src/SConscript
r2643 r2830 7 7 # gather cpp files 8 8 cpps = env.SGlob("*.cpp") 9 cpps.remove("Plotter2.cpp") 9 10 pycpps = env.SGlob("python_*.cpp") 10 11 for pf in pycpps: 11 12 cpps.remove(pf) 13 pycpps.remove("python_Plotter2.cpp") 12 14 13 15 # location of libcasav.a -
trunk/src/python_asap.cpp
r2742 r2830 68 68 69 69 BOOST_PYTHON_MODULE(_asap) { 70 //asap::python::python_Plotter2();70 asap::python::python_Plotter2(); 71 71 asap::python::python_Scantable(); 72 72 asap::python::python_STFiller(); -
trunk/src/python_asap.h
r2742 r2830 35 35 namespace python { 36 36 void translate_ex(const casa::AipsError& e); 37 //void python_Plotter2();37 void python_Plotter2(); 38 38 void python_Scantable(); 39 39 void python_STFiller();
Note:
See TracChangeset
for help on using the changeset viewer.