14 lines
189 B
CMake
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)
|