mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 13:37:22 +00:00
12 lines
341 B
CMake
12 lines
341 B
CMake
# Try and find a gcc/g++ install
|
|
find_program(GNU_C_COMPILER gcc REQUIRED)
|
|
find_program(GNU_CXX_COMPILER g++ REQUIRED)
|
|
|
|
# Debug messages
|
|
message("GNU_C_COMPILER = ${GNU_C_COMPILER}")
|
|
message("GNU_CXX_COMPILER = ${GNU_C_COMPILER}")
|
|
|
|
# Set compilers to clang
|
|
set(CMAKE_C_COMPILER ${GNU_C_COMPILER})
|
|
set(CMAKE_CXX_COMPILER ${GNU_CXX_COMPILER})
|