From 4e700952817860b740e7a52c88d0acc8b11da546 Mon Sep 17 00:00:00 2001 From: pixl Date: Thu, 4 May 2023 01:17:03 -0400 Subject: [PATCH] Fix building outside out of source dir --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e409a57..cff5eeb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ elseif(EXISTS ${CMAKE_SOURCE_DIR}/version.txt) endif() -IF(NOT EXISTS src/ipcgull) +IF(NOT EXISTS ${PROJECT_SOURCE_DIR}/src/ipcgull) message(FATAL_ERROR "Missing ipcgull submodule") endif()