Skip to content

Commit

Permalink
Merge e762a5c into 8d3fe9f
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrnz committed Nov 21, 2019
2 parents 8d3fe9f + e762a5c commit 31e3666
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
cmake_minimum_required(VERSION 3.14)

# Specify the compiler we will use.
# Note: this to be set **before** the project declaration

if(WIN32)
set(CMAKE_C_COMPILER cl)
set(CMAKE_CXX_COMPILER cl)
elseif(APPLE)
set(CMAKE_C_COMPILER clang)
set(CMAKE_CXX_COMPILER clang++)
else()
set(CMAKE_C_COMPILER cc)
set(CMAKE_CXX_COMPILER c++)
endif()

# Project definition

project(OpenCOR)
Expand Down

0 comments on commit 31e3666

Please sign in to comment.