Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 16:06:26 +02:00
parent 3622d030dd
commit 1fe1f20bda

14
CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
project(DbHashCracker)
set(HEADERS
workerthread.h
)
set(SOURCES
main.cpp
workerthread.cpp
)
add_executable(hashcracker ${HEADERS} ${SOURCES})
target_link_libraries(hashcracker Qt5::Core Qt5::Sql)