Explorar el Código

Added missing CMakeLists file for the examples directory

Ioannis Koutras hace 14 años
padre
commit
56dd402972
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. 11 0
      examples/CMakeLists.txt

+ 11 - 0
examples/CMakeLists.txt

@@ -0,0 +1,11 @@
+project(dmmlib-examples C)
+
+include_directories(
+	${DMMLIB_PUBLIC_INCLUDE_DIRS}
+)
+
+add_executable(test test.c)
+target_link_libraries(test ${DMMLIB_SHARED_LIBRARY})
+
+add_executable(larson larson.c)
+target_link_libraries(larson ${DMMLIB_SHARED_LIBRARY})