diff options
author | kcat <[email protected]> | 2020-03-27 12:35:23 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-03-27 12:35:23 -0700 |
commit | 6cfb4ec4624e948e68cd03f99f4f4917bf1549dc (patch) | |
tree | 7a115584e2b7b1cafb6ef58020b2b505605abd5b | |
parent | 8731accd3f40b25632fa0f90c8954a5f0b1fd5a5 (diff) | |
parent | 2a3c7ccd811e766621205e7ff545a0cb1154dd34 (diff) |
Merge pull request #404 from jhasse/cmake-no-cxx-compiler
Don't require a C++ compiler for native-tools
-rw-r--r-- | native-tools/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native-tools/CMakeLists.txt b/native-tools/CMakeLists.txt index 5e816bba..88bf1f56 100644 --- a/native-tools/CMakeLists.txt +++ b/native-tools/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(native-tools) +project(native-tools C) include(CheckLibraryExists) |