Changed license
This commit is contained in:
parent
5862658942
commit
c0fb378f2e
4 changed files with 699 additions and 0 deletions
22
CMakeLists.txt
Normal file
22
CMakeLists.txt
Normal 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}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue