mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
25 lines
451 B
CMake
25 lines
451 B
CMake
# set standard directory locations
|
|
include(GNUInstallDirs)
|
|
|
|
set(phreeqc_DATABASE
|
|
Amm.dat
|
|
core10.dat
|
|
ColdChem.dat
|
|
frezchem.dat
|
|
iso.dat
|
|
llnl.dat
|
|
minteq.dat
|
|
minteq.v4.dat
|
|
phreeqc.dat
|
|
pitzer.dat
|
|
sit.dat
|
|
Tipping_Hurley.dat
|
|
wateq4f.dat
|
|
)
|
|
|
|
if (WIN32)
|
|
install (FILES ${phreeqc_DATABASE} DESTINATION database)
|
|
else()
|
|
install (FILES ${phreeqc_DATABASE} DESTINATION ${CMAKE_INSTALL_DOCDIR}/database)
|
|
endif()
|