From d2198938bc6932fa9a47e04345e8220a94f2c4df Mon Sep 17 00:00:00 2001 From: Feodor Fitsner Date: Mon, 3 Mar 2025 09:43:35 -0800 Subject: [PATCH] Added MIMALLOC_LIB (#42) --- {{cookiecutter.out_dir}}/linux/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/{{cookiecutter.out_dir}}/linux/CMakeLists.txt b/{{cookiecutter.out_dir}}/linux/CMakeLists.txt index 7fd9a43..b70eb7c 100644 --- a/{{cookiecutter.out_dir}}/linux/CMakeLists.txt +++ b/{{cookiecutter.out_dir}}/linux/CMakeLists.txt @@ -73,6 +73,7 @@ apply_standard_settings(${BINARY_NAME}) # Add dependency libraries. Add any application-specific dependencies here. target_link_libraries(${BINARY_NAME} PRIVATE flutter) target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) +target_link_libraries(${BINARY_NAME} PRIVATE ${MIMALLOC_LIB}) # Run the Flutter tool portions of the build. This must not be removed. add_dependencies(${BINARY_NAME} flutter_assemble)