From 9e3e3f8c208957267f957072059cfa776e726282 Mon Sep 17 00:00:00 2001
From: Alexander Schmidt <alex@treefish.org>
Date: Wed, 27 Aug 2014 00:14:19 +0200
Subject: [PATCH] Do not use list append in cmake file.

---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index deb7b3a..a1caa11 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
 cmake_minimum_required (VERSION 3.0)
 project (CUBAINT)
 
-list (APPEND CMAKE_CXX_FLAGS "-std=c++11")
+set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
 
 add_library (cubaint cubaint.cpp)
 target_link_libraries (cubaint cuba)
-- 
2.39.5