QRCodeLibrary/Demo/CMakeLists.txt
2021-12-15 23:31:29 +03:00

14 lines
189 B
CMake

set(Demo_SRCS
main.cpp
)
add_executable(QRCodeLibraryDemo
${Demo_SRCS}
)
target_link_libraries(QRCodeLibraryDemo
QRCodeLibrary
)
install(TARGETS QRCodeLibraryDemo DESTINATION bin)