From 8fc0dcfd48d624a3e4bdf2c3935eafa64cb019b2 Mon Sep 17 00:00:00 2001 From: Justin Carpentier Date: Mon, 5 Feb 2024 18:46:55 +0100 Subject: [PATCH] [profiler] Add install target --- profiler/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiler/CMakeLists.txt b/profiler/CMakeLists.txt index 3959473a..acc5ce24 100644 --- a/profiler/CMakeLists.txt +++ b/profiler/CMakeLists.txt @@ -194,3 +194,5 @@ if(EMSCRIPTEN) file(COPY ${CMAKE_CURRENT_LIST_DIR}/wasm/index.html DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) file(COPY ${CMAKE_CURRENT_LIST_DIR}/wasm/httpd.py DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) endif() + +install(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR})