Browse Source

adding dependency include path manually for now

Roberto Parolin 6 years ago
parent
commit
c6d00e0897
1 changed files with 9 additions and 0 deletions
  1. 9 0
      test/CMakeLists.txt

+ 9 - 0
test/CMakeLists.txt

@@ -33,6 +33,15 @@ set(SOURCES ${EABASETEST_SOURCES})
 #-------------------------------------------------------------------------------------------
 add_executable(EABaseTest ${SOURCES})
 
+#-------------------------------------------------------------------------------------------
+# Dependency include paths
+# NOTE(rparolin): Why can't this be in the package build script?
+#-------------------------------------------------------------------------------------------
+target_include_directories(EABaseTest PRIVATE packages/EAMain/include)
+target_include_directories(EABaseTest PRIVATE packages/EAStdC/include)
+target_include_directories(EABaseTest PRIVATE packages/EATest/include)
+target_include_directories(EABaseTest PRIVATE packages/EAAssert/include)
+
 #-------------------------------------------------------------------------------------------
 # Run Unit tests and verify the results.
 #-------------------------------------------------------------------------------------------