From 2c54ec67cbf43cad34df9a130294656a86e402d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20In=C3=A1cio=20Viegas?= Date: Tue, 31 May 2022 12:36:14 -0300 Subject: [PATCH] Using CMAKE_CURRENT_SOURCE_DIR to properly refer to mujoco's include directory --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e80b7e6..9426dae4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,7 @@ set(MUJOCO_HEADERS add_library(mujoco SHARED) target_include_directories( mujoco - PUBLIC $ + PUBLIC $ $ PRIVATE src )