Skip to content

Commit

Permalink
Try to disable testing for deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-cukic committed Dec 3, 2023
1 parent dc8d5f9 commit 080c1bb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ui/cmake/Dependencies.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
include(FetchContent)

set(SAVED_ENABLE_TESTING ${ENABLE_TESTING})
set(EMABLE_TESTING FALSE)

FetchContent_Declare(
imgui
GIT_REPOSITORY https://github.com/ocornut/imgui.git
Expand Down Expand Up @@ -127,3 +130,5 @@ target_include_directories(stb INTERFACE ${stb_SOURCE_DIR})

add_library(plf_colony INTERFACE)
target_include_directories(plf_colony INTERFACE ${plf_colony_SOURCE_DIR})

set(EMABLE_TESTING ${SAVED_ENABLE_TESTING})

0 comments on commit 080c1bb

Please sign in to comment.