From 4b49358877280becf4cd1e4664afc09a40762373 Mon Sep 17 00:00:00 2001 From: Anselme Date: Tue, 31 May 2016 23:54:10 +0200 Subject: [PATCH] fixed compatibility issues with GNU gcc --- CMakeLists.txt | 2 +- src/simulation.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 98b49be..8b24159 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,6 @@ set(USE_RENDERER True) set(USE_QT5 True) set(QT_MODULE core gui widgets opengl) -set(CMAKE_TEMPLATE_PATH "../cmaketemplate") +set(CMAKE_TEMPLATE_PATH "../CMakeTemplate") include(${CMAKE_TEMPLATE_PATH}/template.cmake) diff --git a/src/simulation.cpp b/src/simulation.cpp index 966f2bb..ab83cd2 100644 --- a/src/simulation.cpp +++ b/src/simulation.cpp @@ -2,6 +2,7 @@ #include #include +#include #include "map.h" #include "dude.h" #include "mapscene.h"