Skip to content

Commit

Permalink
Squashed 'database/' changes from 4c2ea26c..91aa5fd8
Browse files Browse the repository at this point in the history
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.
58 changes: 29 additions & 29 deletions CMakeLists.txt
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()

0 comments on commit 45988cf

Please # to comment.