-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'database/' changes from 4c2ea26c..91aa5fd8
91aa5fd8 Introduce end-of-line normalization (#6) git-subtree-dir: database git-subtree-split: 91aa5fd89b2f211b1dc85020c227df1a35676318
- Loading branch information
Darth Vader
committed
Mar 8, 2023
1 parent
6561acc
commit 45988cf
Showing
1 changed file
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
# 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 | ||
) | ||
|
||
# for mytest tests | ||
foreach(db ${phreeqc_DATABASE}) | ||
configure_file(${db} ${db} COPYONLY) | ||
endforeach() | ||
|
||
if (WIN32) | ||
install (FILES ${phreeqc_DATABASE} DESTINATION database) | ||
else() | ||
install (FILES ${phreeqc_DATABASE} DESTINATION ${CMAKE_INSTALL_DOCDIR}/database) | ||
endif() | ||
# 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 | ||
) | ||
|
||
# for mytest tests | ||
foreach(db ${phreeqc_DATABASE}) | ||
configure_file(${db} ${db} COPYONLY) | ||
endforeach() | ||
|
||
if (WIN32) | ||
install (FILES ${phreeqc_DATABASE} DESTINATION database) | ||
else() | ||
install (FILES ${phreeqc_DATABASE} DESTINATION ${CMAKE_INSTALL_DOCDIR}/database) | ||
endif() |