added examples to CMake build

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc/trunk@9689 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2015-05-20 06:35:04 +00:00
parent 66776d99de
commit 580f0718ba
3 changed files with 36 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@ -0,0 +1,10 @@
add_subdirectory(excel)
add_subdirectory(python)
SET(COM_Files
README.txt
)
SET(COM_Dir ${EXAMPLES_DIR}/com)
install(FILES ${COM_Files} DESTINATION ${COM_Dir})

12
excel/CMakeLists.txt Normal file
View File

@ -0,0 +1,12 @@
SET(Excel_Files
phreeqc.dat
runphreeqc.xls
withcallback.xls
)
SET(Excel_Dir ${EXAMPLES_DIR}/com/excel)
install(FILES ${Excel_Files} DESTINATION ${Excel_Dir})

14
python/CMakeLists.txt Normal file
View File

@ -0,0 +1,14 @@
SET(Python_Files
Gypsum.py
parallel_advect.py
phreeqc.dat
pitzer.dat
wateq4f.dat
)
SET(Python_Dir ${EXAMPLES_DIR}/com/python)
install(FILES ${Python_Files} DESTINATION ${Python_Dir})