2023-11-02 22:55:11 +00:00
|
|
|
cmake_minimum_required(VERSION 3.5)
|
2021-05-11 19:21:25 +00:00
|
|
|
project(simplecrypt LANGUAGES CXX)
|
2020-04-07 20:33:03 +00:00
|
|
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
2021-05-11 19:21:25 +00:00
|
|
|
find_package(Qt5 COMPONENTS Core REQUIRED)
|
2020-04-07 20:33:03 +00:00
|
|
|
|
2021-05-11 19:21:25 +00:00
|
|
|
add_library(simpleCrypt STATIC simplecrypt.cpp simplecrypt.h)
|
2020-04-07 20:33:03 +00:00
|
|
|
|
|
|
|
target_link_libraries(simpleCrypt Qt5::Core)
|