diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-11-06 20:09:41 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-11-06 20:19:24 +0100 |
commit | f333a3b6a2c2ec855d980864ed3d3f98ebf6a3a7 (patch) | |
tree | 678bbacbc7af8c4d316ba4e70c75f9abba8c5a0c | |
parent | b724820e7956e387351a8fba2142368d71a26f76 (diff) | |
download | yawa-f333a3b6a2c2ec855d980864ed3d3f98ebf6a3a7.tar.xz |
Don't hardcode /usr/bin/clang
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 55620e4..6ea346d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ configure_file( ${CMAKE_SOURCE_DIR}/src/config.h ) -set(CMAKE_C_COMPILER "/usr/bin/clang") +set(CMAKE_C_COMPILER "clang") set(CMAKE_C_FLAGS "-Weverything") set(CMAKE_C_STANDARD 11) add_definitions( |