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