Fix example app Windows compilation

This commit is contained in:
Foti Dim
2026-02-07 12:38:17 +01:00
parent ceda9a31f7
commit 8d0739ccf5
+3 -2
View File
@@ -3,8 +3,9 @@ cmake_minimum_required(VERSION 3.14)
project(universal_ble_example LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "universal_ble")
# the on-disk name of your application. Must match the CMake project/target name
# expected by Flutter (e.g. from pubspec name) or TARGET_FILE_DIR references fail.
set(BINARY_NAME "universal_ble_example")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.