Changed license

This commit is contained in:
Robert 2020-12-14 12:43:10 +01:00
parent 5862658942
commit c0fb378f2e
4 changed files with 699 additions and 0 deletions

22
CMakeLists.txt Normal file
View file

@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 3.10)
project(AnkiParser)
file(GLOB_RECURSE target_src
"src/*.cpp"
)
file(GLOB_RECURSE target_inc
"include/*.hpp"
)
add_subdirectory(vendor/libzip)
add_library(ankiparser
${target_inc}
${target_src}
)
target_include_directories(ankiparser PRIVATE
${target_inc}
)