diff options
author | daan <daan@effp.org> | 2022-02-10 11:58:25 -0800 |
---|---|---|
committer | daan <daan@effp.org> | 2022-02-10 11:58:25 -0800 |
commit | 38639a08c8b75294fc18da05c7015eba88e2bbc5 (patch) | |
tree | 8cbb5292d8587d87176cfa4dab6477890a76cdc6 | |
parent | ccbc8ae0bbfd71928dcb11b16ccad3c54c85e72d (diff) |
fix test-api-fill c++ compilation
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d32c630..d1207bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -175,7 +175,7 @@ endif() if(MI_USE_CXX) message(STATUS "Use the C++ compiler to compile (MI_USE_CXX=ON)") set_source_files_properties(${mi_sources} PROPERTIES LANGUAGE CXX ) - set_source_files_properties(src/static.c test/test-api.c test/test-stress PROPERTIES LANGUAGE CXX ) + set_source_files_properties(src/static.c test/test-api.c test/test-api-fill test/test-stress PROPERTIES LANGUAGE CXX ) if(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang|Clang") list(APPEND mi_cflags -Wno-deprecated) endif() |