Selaa lähdekoodia

Merge branch 'master' of github.com:electronicarts/EABase

Rob Parolin 6 vuotta sitten
vanhempi
sitoutus
6f27a2f7aa
1 muutettua tiedostoa jossa 11 lisäystä ja 0 poistoa
  1. 11 0
      CMakeLists.txt

+ 11 - 0
CMakeLists.txt

@@ -21,3 +21,14 @@ endif()
 #-------------------------------------------------------------------------------------------
 add_definitions(-D_CHAR16T)
 
+if (NOT EABASE_BUILD_TESTS)
+	#-------------------------------------------------------------------------------------------
+	# Header only library 
+	#-------------------------------------------------------------------------------------------
+	add_library(EABase INTERFACE) 
+
+	#-------------------------------------------------------------------------------------------
+	# Include dirs
+	#-------------------------------------------------------------------------------------------
+	target_include_directories(EABase INTERFACE include/Common)
+endif()