154 lines
5.9 KiB
CMake
Executable File
154 lines
5.9 KiB
CMake
Executable File
# Project-level configuration.
|
||
cmake_minimum_required(VERSION 3.14)
|
||
project(HiFastVPN LANGUAGES CXX)
|
||
|
||
# 设置 CMake 策略以兼容旧版本插件
|
||
# CMP0175: add_custom_command() 拒绝无效参数(用于兼容 flutter_inappwebview_windows 插件)
|
||
if(POLICY CMP0175)
|
||
cmake_policy(SET CMP0175 OLD)
|
||
endif()
|
||
|
||
# 设置静态链接
|
||
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
|
||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
|
||
set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_PROFILE} /MT")
|
||
|
||
# 添加编码和警告处理
|
||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /utf-8")
|
||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4819 /wd4244 /wd4458")
|
||
# 添加 /FS 标志以支持并行编译时的 PDB 文件访问(解决 C1041 错误)
|
||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /FS")
|
||
|
||
# The name of the executable created for the application. Change this to change
|
||
# the on-disk name of your application.
|
||
set(BINARY_NAME "HiFastVPN")
|
||
|
||
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
|
||
# versions of CMake.
|
||
cmake_policy(SET CMP0063 NEW)
|
||
|
||
# Define build configuration option.
|
||
get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
||
if(IS_MULTICONFIG)
|
||
set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release"
|
||
CACHE STRING "" FORCE)
|
||
else()
|
||
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
||
set(CMAKE_BUILD_TYPE "Debug" CACHE
|
||
STRING "Flutter build mode" FORCE)
|
||
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
|
||
"Debug" "Profile" "Release")
|
||
endif()
|
||
endif()
|
||
# Define settings for the Profile build mode.
|
||
set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}")
|
||
set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}")
|
||
set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}")
|
||
set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}")
|
||
|
||
# Use Unicode for all projects.
|
||
add_definitions(-DUNICODE -D_UNICODE)
|
||
|
||
# Compilation settings that should be applied to most targets.
|
||
#
|
||
# Be cautious about adding new options here, as plugins use this function by
|
||
# default. In most cases, you should add new options to specific targets instead
|
||
# of modifying this function.
|
||
function(APPLY_STANDARD_SETTINGS TARGET)
|
||
target_compile_features(${TARGET} PUBLIC cxx_std_17)
|
||
target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100" /wd"4819" /wd"4244" /wd"4458")
|
||
target_compile_options(${TARGET} PRIVATE /EHsc /utf-8 /FS)
|
||
target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0")
|
||
target_compile_definitions(${TARGET} PRIVATE "$<$<CONFIG:Debug>:_DEBUG>")
|
||
# 确保目标使用静态链接
|
||
set_target_properties(${TARGET} PROPERTIES
|
||
MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||
endfunction()
|
||
|
||
# Flutter library and tool build rules.
|
||
set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter")
|
||
add_subdirectory(${FLUTTER_MANAGED_DIR})
|
||
|
||
# Application build; see runner/CMakeLists.txt.
|
||
add_subdirectory("runner")
|
||
|
||
|
||
# Generated plugin build rules, which manage building the plugins and adding
|
||
# them to the application.
|
||
include(flutter/generated_plugins.cmake)
|
||
|
||
# 为所有插件应用 /FS 标志,解决 PDB 文件锁冲突问题
|
||
# 这确保 flutter_inappwebview_windows 等插件能够正确编译
|
||
foreach(plugin ${FLUTTER_PLUGIN_LIST})
|
||
if(TARGET ${plugin}_plugin)
|
||
target_compile_options(${plugin}_plugin PRIVATE /FS)
|
||
endif()
|
||
endforeach(plugin)
|
||
|
||
|
||
# === Installation ===
|
||
# Support files are copied into place next to the executable, so that it can
|
||
# run in place. This is done instead of making a separate bundle (as on Linux)
|
||
# so that building and running from within Visual Studio will work.
|
||
set(BUILD_BUNDLE_DIR "$<TARGET_FILE_DIR:${BINARY_NAME}>")
|
||
# Make the "install" step default, as it's required to run.
|
||
set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1)
|
||
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
||
set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
|
||
endif()
|
||
|
||
set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data")
|
||
set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}")
|
||
# CLI 工具目录(用于存放 HiFastVPNCli.exe)
|
||
set(INSTALL_BUNDLE_CLI_DIR "${CMAKE_INSTALL_PREFIX}/cli")
|
||
|
||
install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}"
|
||
COMPONENT Runtime)
|
||
|
||
install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
|
||
COMPONENT Runtime)
|
||
|
||
install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
|
||
COMPONENT Runtime)
|
||
|
||
# 安装 libcore.dll 到可执行文件目录(与 BearVPN.exe 同级)
|
||
install(FILES "../libcore/bin/libcore.dll"
|
||
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
|
||
COMPONENT Runtime
|
||
OPTIONAL)
|
||
|
||
# 安装 HiFastVPNCli.exe(从 libcore/bin 复制并重命名)
|
||
# 注意:libcore 编译的是 HiddifyCli.exe,打包脚本会自动重命名为 HiFastVPNCli.exe
|
||
# 这里需要安装 HiFastVPNCli.exe,因为它已经被重命名了
|
||
install(FILES "../libcore/bin/HiFastVPNCli.exe"
|
||
DESTINATION "${CMAKE_INSTALL_PREFIX}"
|
||
COMPONENT Runtime
|
||
OPTIONAL)
|
||
|
||
install(FILES "runner/resources/app_icon.ico"
|
||
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
|
||
COMPONENT Runtime
|
||
OPTIONAL)
|
||
|
||
|
||
if(PLUGIN_BUNDLED_LIBRARIES)
|
||
install(FILES "${PLUGIN_BUNDLED_LIBRARIES}"
|
||
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
|
||
COMPONENT Runtime)
|
||
endif()
|
||
|
||
# Fully re-copy the assets directory on each build to avoid having stale files
|
||
# from a previous install.
|
||
set(FLUTTER_ASSET_DIR_NAME "flutter_assets")
|
||
install(CODE "
|
||
file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\")
|
||
" COMPONENT Runtime)
|
||
install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}"
|
||
DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime)
|
||
|
||
# Install the AOT library on non-Debug builds only.
|
||
install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
|
||
CONFIGURATIONS Profile;Release
|
||
COMPONENT Runtime)
|