FIX: fixed the path of the cmake function in the cmake lists

This commit is contained in:
Henry Winkel
2023-02-17 09:16:23 +01:00
parent 2cbfd57220
commit 086f5d109e
3 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.1 FATAL_ERROR)
project (SimCore VERSION 0.1.0 LANGUAGES CXX C)
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/Modules)
include(defaultOptions)
IF(NOT TARGET Catch2)