From 3270f1f7a7e5b49f0456141ea2f431f0b2a0623c Mon Sep 17 00:00:00 2001 From: Phani Pavan K Date: Wed, 18 Jan 2023 17:15:44 +0530 Subject: [PATCH] fix plugin for windows --- windows/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt index 7ef3cbd..db09861 100644 --- a/windows/CMakeLists.txt +++ b/windows/CMakeLists.txt @@ -1,13 +1,13 @@ cmake_minimum_required(VERSION 3.15) -set(PROJECT_NAME "modal_progress_bar_hud_nsn") +set(PROJECT_NAME "modal_progress_hud_nsn") project(${PROJECT_NAME} LANGUAGES CXX) # This value is used when generating builds using this plugin, so it must # not be changed -set(PLUGIN_NAME "modal_progress_bar_hud_nsn_plugin") +set(PLUGIN_NAME "modal_progress_hud_nsn_plugin") add_library(${PLUGIN_NAME} SHARED - "modal_progress_bar_hud_nsn_plugin.cpp" + "modal_progress_hud_nsn_plugin.cpp" ) apply_standard_settings(${PLUGIN_NAME}) set_target_properties(${PLUGIN_NAME} PROPERTIES @@ -18,7 +18,7 @@ target_include_directories(${PLUGIN_NAME} INTERFACE target_link_libraries(${PLUGIN_NAME} PRIVATE flutter flutter_wrapper_plugin) # List of absolute paths to libraries that should be bundled with the plugin -set(modal_progress_bar_hud_nsn_bundled_libraries +set(modal_progress_hud_nsn_bundled_libraries "" PARENT_SCOPE )