diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..45b53db --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +include("${CODAL_UTILS_LOCATION}") + +RECURSIVE_FIND_DIR(INCLUDE_DIRS "./inc" "*.h") +RECURSIVE_FIND_FILE(SOURCE_FILES "./source" "*.c??") + +include_directories(${INCLUDE_DIRS}) + +add_library(codal-library-template + ${SOURCE_FILES} +) + +target_link_libraries( + codal-library-template + codal-core +) + +target_include_directories(codal-library-template PUBLIC ${INCLUDE_DIRS}) \ No newline at end of file diff --git a/inc/_blank.txt b/inc/_blank.txt new file mode 100644 index 0000000..0ea23b9 --- /dev/null +++ b/inc/_blank.txt @@ -0,0 +1 @@ +Included so git creates this path :) \ No newline at end of file diff --git a/source/_blank.txt b/source/_blank.txt new file mode 100644 index 0000000..0ea23b9 --- /dev/null +++ b/source/_blank.txt @@ -0,0 +1 @@ +Included so git creates this path :) \ No newline at end of file