diff --git a/examples/cmap_example/CMakeLists.txt b/examples/cmap_example/CMakeLists.txt new file mode 100644 index 000000000..48acc6f74 --- /dev/null +++ b/examples/cmap_example/CMakeLists.txt @@ -0,0 +1,5 @@ +set(TARGET cmap_example) +add_executable(${TARGET} cmap_example.cpp) +install(TARGETS ${TARGET} RUNTIME) +target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT}) +target_compile_features(${TARGET} PRIVATE cxx_std_11) diff --git a/scripts/cmap_example.cpp b/examples/cmap_example/cmap_example.cpp similarity index 100% rename from scripts/cmap_example.cpp rename to examples/cmap_example/cmap_example.cpp