From b6b8f9e38766ab32d819b9db13e63f202d6c79a6 Mon Sep 17 00:00:00 2001 From: wheaney <42350981+wheaney@users.noreply.github.com> Date: Thu, 7 Sep 2023 13:08:14 -0700 Subject: [PATCH] Remove Fusion library inclusion from the top-level CMakeLists --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a1cdd2..edbffc1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,14 +10,10 @@ add_executable(nrealAirLinuxDriver src/driver.c ) -target_include_directories(nrealAirLinuxDriver - SYSTEM BEFORE PRIVATE ${FUSION_INCLUDE_DIR} -) - target_include_directories(nrealAirLinuxDriver BEFORE PUBLIC ${NREAL_AIR_INCLUDE_DIR} ) target_link_libraries(nrealAirLinuxDriver - ${NREAL_AIR_LIBRARY} ${FUSION_LIBRARY} + ${NREAL_AIR_LIBRARY} ) \ No newline at end of file