this repo has no description

Use same binary for restart and normal run

Changed files
+2 -10
+1 -9
.gitmodules
···
-
[submodule "software/gecode_on_restart"]
-
path = software/gecode_on_restart
-
url = git@github.com:Dekker1/gecode.git
-
branch = feature/on_restart
[submodule "software/gecode_on_record"]
path = software/gecode_on_record
url = git@github.com:Dekker1/gecode.git
···
[submodule "software/gecode"]
path = software/gecode
url = git@github.com:Dekker1/gecode.git
-
branch = develop
+
branch = feature/on_restart
[submodule "software/chuffed"]
path = software/chuffed
-
url = git@github.com:Dekker1/chuffed.git
-
branch = develop
-
[submodule "software/chuffed_on_restart"]
-
path = software/chuffed_on_restart
url = git@github.com:Dekker1/chuffed.git
branch = feature/on_restart
+1 -1
install.sh
···
mkdir -p software/{build,install}
# Build Chuffed
-
for dir in "chuffed" "chuffed_on_restart" "gecode" "gecode_on_record" "gecode_on_replay" "gecode_on_restart"
+
for dir in "chuffed" "gecode" "gecode_on_record" "gecode_on_replay"
do
cmake -S software/${dir} -B software/build/${dir} -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=`pwd`/software/install/${dir}
cmake --build software/build/${dir} --config Release --target install