Add CMakeLists.txt

This commit is contained in:
Martin Delille 2022-11-20 22:25:55 +01:00
parent bc69390519
commit 5975f82739
No known key found for this signature in database
GPG Key ID: C073D887B6E32DE5

15
QtAwesome/CMakeLists.txt Normal file
View File

@ -0,0 +1,15 @@
project(QtAwesome)
add_library(QtAwesome
QtAwesome.cpp
QtAwesomeAnim.cpp
QtAwesome.qrc
)
target_include_directories(QtAwesome
PUBLIC ${PROJECT_SOURCE_DIR}
)
target_link_libraries(QtAwesome PUBLIC
Qt5::Widgets
)