Compare commits

..

No commits in common. "f1b38c903a0efd527e5381f0599ed3877f79b893" and "58ad00e47abe89d958907c1900bad40f1f33c246" have entirely different histories.

6 changed files with 5 additions and 18 deletions

View file

@ -5,7 +5,7 @@ project(BillySheet LANGUAGES CXX C)
find_package(OpenGL REQUIRED)
find_package(GLEW REQUIRED)
find_package(Boost CONFIG REQUIRED COMPONENTS stacktrace_addr2line)
find_package(Boost REQUIRED COMPONENTS stacktrace_addr2line)
include_directories(${Boost_INCLUDE_DIR})

2
external/catch2 vendored

@ -1 +1 @@
Subproject commit 31588bb4f56b638dd5afc28d3ebff9b9dcefb88d
Subproject commit 05e10dfccc28c7f973727c54f850237d07d5e10f

2
external/glfw vendored

@ -1 +1 @@
Subproject commit 7b6aead9fb88b3623e3b3725ebb42670cbe4c579
Subproject commit e2c92645460f680fd272fd2eed591efb2be7dc31

2
external/spdlog vendored

@ -1 +1 @@
Subproject commit 27cb4c76708608465c413f6d0e6b8d99a4d84302
Subproject commit 7c02e204c92545f869e2f04edaab1f19fe8b19fd

2
external/svector vendored

@ -1 +1 @@
Subproject commit cbeced42e061da03b881ba1d09621d4604de030a
Subproject commit 74817cfbdbaceb415508de1ff10a0589bf8f25d7

View file

@ -1,13 +0,0 @@
#! /usr/bin/env bash
for dir in * ; do
dir=${dir%*/}
if [ -d "${dir}" ]; then
echo "${dir}"
cd "${dir}"
latest_commit_with_tag=`git rev-list --tags --max-count=1`
latest_tag=`git describe --tags ${latest_commit_with_tag}`
git checkout "${latest_tag}"
cd ..
fi
done