Added cmake build config

This commit is contained in:
2021-12-15 23:31:29 +03:00
parent 1275c47676
commit 3465d60d81
8 changed files with 113 additions and 6 deletions

13
Demo/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
set(Demo_SRCS
main.cpp
)
add_executable(QRCodeLibraryDemo
${Demo_SRCS}
)
target_link_libraries(QRCodeLibraryDemo
QRCodeLibrary
)
install(TARGETS QRCodeLibraryDemo DESTINATION bin)