From c61bc5ea20f76ffb2fd2652a4b416cd76f9e717b Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Wed, 5 Apr 2017 23:16:57 +0200 Subject: Use CMake instead of qmake --- CMakeLists.txt | 4 ++++ ProcessManager.pro | 8 -------- 2 files changed, 4 insertions(+), 8 deletions(-) create mode 100644 CMakeLists.txt delete mode 100644 ProcessManager.pro diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..33cff7f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 2.8.11) +project(ProcessManager) + +add_executable(ProcessManager main.c) diff --git a/ProcessManager.pro b/ProcessManager.pro deleted file mode 100644 index 51dd971..0000000 --- a/ProcessManager.pro +++ /dev/null @@ -1,8 +0,0 @@ -TEMPLATE = app -CONFIG += console -CONFIG -= app_bundle -CONFIG -= qt - -SOURCES += main.c - -QMAKE_CFLAGS *= -std=c11 -Wall -Werror -- cgit v1.2.3-54-g00ecf