diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..efe5a1c --- /dev/null +++ b/CMakeLists.txt @@ -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)