We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae5f0e commit 43bf237Copy full SHA for 43bf237
examples/tts/CMakeLists.txt
@@ -8,4 +8,5 @@ set(TARGET llama-mimi)
8
add_executable(${TARGET} mimi.cpp mimi-model.cpp)
9
install(TARGETS ${TARGET} RUNTIME)
10
target_link_libraries(${TARGET} PRIVATE llama common ${CMAKE_THREAD_LIBS_INIT})
11
-target_compile_features(${TARGET} PRIVATE cxx_std_17)
+# for using C++ designated initializers, TODO: can be changed back to C++17 in the future
12
+target_compile_features(${TARGET} PRIVATE cxx_std_20)
0 commit comments