Basic demonstrator
Works fine but can be slow, especially because of heavy IO.
This commit is contained in:
commit
afe832654d
8 changed files with 414 additions and 0 deletions
20
CMakeLists.txt
Normal file
20
CMakeLists.txt
Normal file
|
@ -0,0 +1,20 @@
|
|||
cmake_minimum_required(VERSION 3.18)
|
||||
project(AutoPointsPermis)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
|
||||
set(CommonFiles
|
||||
db_info.h
|
||||
LicenceOperations.cpp
|
||||
LicenceOperations.h)
|
||||
|
||||
add_executable(AutoPointsPermis-CreateDb
|
||||
create.cpp
|
||||
${CommonFiles})
|
||||
|
||||
add_executable(AutoPointsPermis
|
||||
main.cpp
|
||||
${CommonFiles})
|
||||
|
||||
target_link_libraries(AutoPointsPermis sqlite3)
|
||||
target_link_libraries(AutoPointsPermis-CreateDb sqlite3)
|
Loading…
Add table
Add a link
Reference in a new issue