mirror of
https://gitlab.com/niansa/minituxi.git
synced 2025-03-06 20:49:18 +01:00
27 lines
568 B
CMake
27 lines
568 B
CMake
# Created by and for Qt Creator This file was created for editing the project sources only.
|
|
# You may attempt to use it for building too, by modifying this file here.
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
project(minituxi)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
|
include_directories(
|
|
include
|
|
)
|
|
|
|
set(SRCS
|
|
include/defs.h
|
|
include/system.hpp
|
|
include/font.hpp
|
|
src/main.cpp
|
|
src/system.cpp
|
|
src/font.cpp
|
|
)
|
|
|
|
|
|
add_executable(${CMAKE_PROJECT_NAME} ${SRCS})
|
|
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PUBLIC -static pthread)
|