diff options
author | Chris Robinson <[email protected]> | 2017-08-26 02:21:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-08-26 02:21:50 -0700 |
commit | b1ff2a05af7e786e1d9f6b13d5338cd5178c067d (patch) | |
tree | fc20e8222c211c0544e527df0c158ec0f021cbab /native-tools | |
parent | 561e95528f55be2837541239236281c4cd63d728 (diff) |
Always declare a native-tools build target
Diffstat (limited to 'native-tools')
-rw-r--r-- | native-tools/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native-tools/CMakeLists.txt b/native-tools/CMakeLists.txt index 4713dc56..bb8c677e 100644 --- a/native-tools/CMakeLists.txt +++ b/native-tools/CMakeLists.txt @@ -1,5 +1,7 @@ cmake_minimum_required(VERSION 3.0.2) + project(native-tools) + add_executable(bin2h bin2h.c) # Enforce no dressing for executable names, so the main script can find it set_target_properties(bin2h PROPERTIES OUTPUT_NAME bin2h) |