From 5301c91b75cf06d6cb1ab2cdf36685cfc61a6374 Mon Sep 17 00:00:00 2001 From: David Baranyai Date: Wed, 27 Jun 2018 12:28:06 +0200 Subject: [PATCH] Fixed source files directory --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ffbacfb..d95609f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ set(ROOT_LIBRARIES -L${ROOT_LIBRARY_DIR} -lCore -lRIO -lNet -lHist -lGraf -lGraf # Locate sources and headers for this project # NB: headers are included so they will show up in IDEs # -file(GLOB sources ${PROJECT_SOURCE_DIR}/src/*.cpp) +file(GLOB sources ${PROJECT_SOURCE_DIR}/source/*.cpp) file(GLOB headers ${PROJECT_SOURCE_DIR}/include/*.hpp) #----------------------------------------------------------------------------