소스 검색

Added missing CMakeLists file for the examples directory

Ioannis Koutras 14 년 전
부모
커밋
56dd402972
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  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})