Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,18 @@ else()
include(FetchContent)
FetchContent_Declare(
"jrl-cmakemodules"
GIT_REPOSITORY "https://github.com/jrl-umi3218/jrl-cmakemodules.git"
GIT_REPOSITORY "https://github.com/arntanguy/jrl-cmakemodules.git"
GIT_TAG 98c3f2676abcd84775863f27a8eabcd864115b49
)
FetchContent_MakeAvailable("jrl-cmakemodules")
FetchContent_GetProperties("jrl-cmakemodules" SOURCE_DIR JRL_CMAKE_MODULES)
endif()
endif()

include(${JRL_CMAKE_MODULES}/base.cmake)
include(${JRL_CMAKE_MODULES}/cython/cython.cmake)
include(${JRL_CMAKE_MODULES}/msvc-specific.cmake)
if(${PYTHON_BINDING})
include(${JRL_CMAKE_MODULES}/cython/cython.cmake)
endif()

project(Tasks CXX)

Expand Down
Loading