From 270c81867b7bbdead00a41b7383b2d878362eba7 Mon Sep 17 00:00:00 2001 From: Samer Afach Date: Fri, 31 Mar 2017 14:57:09 +0200 Subject: [PATCH] Added makefile --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..be8d914 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.8) + +set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++03") + +project(test_pthreadAtomic) +add_executable(${PROJECT_NAME} "main.cpp")