aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorBart Ribbers <bribbers@disroot.org>2021-04-23 14:24:16 +0200
committerMagneFire <idanlcontact@gmail.com>2021-05-17 13:01:52 +0200
commitfdc71d176c3d2c3e569c1d26998d4def12d9d1c3 (patch)
tree5ec778ee67490e93e8bf86b7c467d620ca038d3f /main.cpp
parentdab31c329a4509eb581f0eb5e953bd260118221f (diff)
Port to CMake
Qt is slowly deprecating QMake. They have stopped building Qt itself with QMake and moved Qt6 to CMake instead. Although QMake is still around, it's clear the focus has shifted and it would be good for applications to switch over to an alternative build system as well So hereby, switch the build system to CMake
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/main.cpp b/main.cpp
deleted file mode 100644
index a44544c..0000000
--- a/main.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (C) 2017 - Florent Revest <revestflo@gmail.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <asteroidapp.h>
-
-int main(int argc, char *argv[])
-{
- return AsteroidApp::main(argc, argv);
-}