From 1112e1e8e5f16377f7023387cf4b0da4f9d0a050 Mon Sep 17 00:00:00 2001 From: Rob Parolin Date: Sat, 15 Jun 2019 08:12:24 -0700 Subject: [PATCH] fixing include directory --- CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 79adfbb..fba98ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,3 +21,12 @@ endif() #------------------------------------------------------------------------------------------- add_definitions(-D_CHAR16T) +#------------------------------------------------------------------------------------------- +# Header only library +#------------------------------------------------------------------------------------------- +add_library(EABase INTERFACE) + +#------------------------------------------------------------------------------------------- +# Include dirs +#------------------------------------------------------------------------------------------- +target_include_directories(EABase INTERFACE include/Common)