This commit is contained in:
acslk 2015-06-29 20:19:51 -04:00
commit 81dbbedc47
1 changed files with 6 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 2.8.4)
project(Workspace)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
file(GLOB_RECURSE SOURCE_FILES ./x64/src/c/* ./x86/src/c/*)
add_executable(Workspace ${SOURCE_FILES})