You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder why the include path of the CalVR project is constructed with the project binary dir as the root directory by the build system. That way you can't build out-of-source, which is useful when compiling for multiple arch's. The patch below would fix this.
Hi,
I wonder why the include path of the CalVR project is constructed with the project binary dir as the root directory by the build system. That way you can't build out-of-source, which is useful when compiling for multiple arch's. The patch below would fix this.
Kind regards,
Stefan Zellmann
Apply to:
commit 50b8f9d
Merge: 9acc310 e8690b8
Author: ASP [email protected]
Date: Thu May 16 11:24:02 2013 -0700
Patch:
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a9820bb..7611e10 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,7 +6,7 @@ SET(CALVR_MAJOR_VERSION 0)
SET(CALVR_MINOR_VERSION 0)
SET(CALVR_VERSION ${CALVR_MAJOR_VERSION}.${CALVR_MINOR_VERSION})
-INCLUDE_DIRECTORIES(${PROJECT_BINARY_DIR}/include)
+INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/include)
INSTALL(DIRECTORY "${CalVR_SOURCE_DIR}/include" DESTINATION include)
The text was updated successfully, but these errors were encountered: