Browse Source

new deps

opengl-renderer-broken
Martin Dørum 4 years ago
parent
commit
b505a28a6f
4 changed files with 16 additions and 0 deletions
  1. 6
    0
      .gitmodules
  2. 8
    0
      third_party/CMakeLists.txt
  3. 1
    0
      third_party/cpptoml
  4. 1
    0
      third_party/msgpack-c

+ 6
- 0
.gitmodules View File

@@ -1,3 +1,9 @@
[submodule "third_party/cpptoml"]
path = third_party/cpptoml
url = https://github.com/skystrife/cpptoml.git
[submodule "third_party/msgpack-c"]
path = third_party/msgpack-c
url = https://github.com/msgpack/msgpack-c.git
[submodule "third_party/imgui"]
path = third_party/imgui
url = https://github.com/ocornut/imgui.git

+ 8
- 0
third_party/CMakeLists.txt View File

@@ -11,4 +11,12 @@ target_include_directories(imgui PUBLIC
${PROJECT_SOURCE_DIR}/third_party/imgui-plot/include
${SDL2_INCLUDE_DIRS})

add_library(cpptoml INTERFACE)
target_include_directories(cpptoml PUBLIC
${PROJECT_SOURCE_DIR}/third_party/cpptoml/include)

add_library(msgpack INTERFACE)
target_include_directories(msgpack PUBLIC
${PROJECT_SOURCE_DIR}/third_party/msgpack/include)

install(TARGETS imgui DESTINATION swan/third_party)

+ 1
- 0
third_party/cpptoml

@@ -0,0 +1 @@
Subproject commit fededad7169e538ca47e11a9ee9251bc361a9a65

+ 1
- 0
third_party/msgpack-c

@@ -0,0 +1 @@
Subproject commit 8085ab8721090a447cf98bb802d1406ad7afe420

Loading…
Cancel
Save