CMakeList

This commit is contained in:
HyperAssembler 2015-06-29 20:18:52 -04:00
parent db45a0c073
commit 1e7b5d9eb7
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})