Skip to content

Commit

Permalink
fix cmake version issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zoemarschner authored and nmwsharp committed Dec 18, 2024
1 parent 70c859e commit 1f8a50c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deps/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
cmake_minimum_required(VERSION 3.8)

cmake_policy(SET CMP0169 OLD) # use deprecated FetchContent_Populate
if(POLICY CMP0169)
cmake_policy(SET CMP0169 OLD) # use deprecated FetchContent_Populate
endif()

# We will accumulate all depenency includes and link libraries here
# (can be relative paths when building list, we will convert all to absolute at end)
Expand Down

0 comments on commit 1f8a50c

Please sign in to comment.