diff --git a/CppProperties.json b/CppProperties.json new file mode 100644 index 0000000..659bf4e --- /dev/null +++ b/CppProperties.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "inheritEnvironments": [ + "msvc_x86" + ], + "name": "x86-Debug", + "includePath": [ + "${env.INCLUDE}", + "${workspaceRoot}\\**" + ], + "defines": [ + "WIN32", + "_DEBUG", + "UNICODE", + "_UNICODE" + ], + "intelliSenseMode": "windows-msvc-x86" + } + ] +} \ No newline at end of file diff --git a/DeviceManager/CMakeLists.txt b/DeviceManager/CMakeLists.txt index 1f0d045..b7dce12 100644 --- a/DeviceManager/CMakeLists.txt +++ b/DeviceManager/CMakeLists.txt @@ -49,51 +49,46 @@ endif() target_link_libraries(DeviceManager PRIVATE Qt${QT_VERSION_MAJOR}::Widgets) + if(CMAKE_SIZEOF_VOID_P EQUAL 8) set(ARCH_DIR "x64") else() set(ARCH_DIR "x86") endif() -set(WinDevice_OUTPUT ${CMAKE_SOURCE_DIR}/../WinDevice/output) +set(WinDevice_OUTPUT "../WinDevice/output") +message("WinDevice_OUTPUT: ${WinDevice_OUTPUT}") # 获取架构信息 set(WinDevice_INCLUDE_DIR "${WinDevice_OUTPUT}/include/") +message("WinDevice_INCLUDE_DIR: ${WinDevice_INCLUDE_DIR}") set(WinDevice_THIRD_INCLUDE_DIR "${WinDevice_OUTPUT}/third_lib/") +message("WinDevice_THIRD_INCLUDE_DIR: ${WinDevice_THIRD_INCLUDE_DIR}") if (CMAKE_BUILD_TYPE STREQUAL "Debug") set(WinDevice_LIB_DIR "${WinDevice_OUTPUT}/${ARCH_DIR}/debug/") else() set(WinDevice_LIB_DIR "${WinDevice_OUTPUT}/${ARCH_DIR}/release/") endif() -# 使用 find_library 查找动态库文件 -find_library(WinDevice_LIB - NAMES WinDevice - HINTS ${WinDevice_LIB_DIR} +message("WinDevice_LIB_DIR: ${WinDevice_LIB_DIR}") + +message("build WinDecie in: ${CMAKE_BUILD_TYPE} mode") + + +add_custom_target(BuildWinDevice ALL + COMMAND ${CMAKE_COMMAND} -E echo "Starting to build WinDevice project..." + COMMAND ${CMAKE_COMMAND} -S ../WinDevice -B ../WinDevice/build -G "Visual Studio 17 2022" -A ${ARCH_DIR} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} + COMMAND ${CMAKE_COMMAND} --build ../WinDevice/build --config ${CMAKE_BUILD_TYPE} + COMMENT "Building WinDevice project in ${CMAKE_BUILD_TYPE} mode" ) -# 添加头文件目录 +# 将 DeviceManager 目标的构建依赖于 BuildWinDevice 自定义目标 +add_dependencies(DeviceManager BuildWinDevice) + + # 添加头文件目录 include_directories(${WinDevice_INCLUDE_DIR} ${WinDevice_THIRD_INCLUDE_DIR}) -# 将找到的库链接到你的目标 +# 使用 find_library 查找动态库文件 +find_library(WinDevice_LIB NAMES WinDevice HINTS ${WinDevice_LIB_DIR}) +# Release 模式下,链接 WinDevice 生成的库文件 target_link_libraries(DeviceManager PRIVATE ${WinDevice_LIB}) - if (CMAKE_BUILD_TYPE STREQUAL "Debug") - # Debug 模式下,添加 WinDevice 项目作为子项目 - add_subdirectory(../WinDevice WinDevice) - # 链接WinDevice项目 - target_include_directories(DeviceManager PRIVATE - ../WinDevice/src - include/third_lib - ) - target_link_libraries(DeviceManager PRIVATE WinDevice) - else() - # Release 模式下,链接 WinDevice 生成的库文件 - target_link_libraries(DeviceManager PRIVATE WinDevice) - # 在 Release 模式下,添加 WinDevice 的头文件路径 - target_include_directories(DeviceManager PRIVATE - ${WinDevice_INCLUDE_DIR} - ${WinDevice_THIRD_INCLUDE_DIR} - ) - endif() - - set_target_properties(DeviceManager PROPERTIES MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} diff --git a/DeviceManager/CMakeSettings.json b/DeviceManager/CMakeSettings.json index c0cb4d9..629d383 100644 --- a/DeviceManager/CMakeSettings.json +++ b/DeviceManager/CMakeSettings.json @@ -6,11 +6,31 @@ "configurationType": "Debug", "buildRoot": "${projectDir}\\out\\build\\${name}", "installRoot": "${projectDir}\\out\\install\\${name}", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x86" ] + }, + { + "name": "x86-Release", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", "cmakeCommandArgs": "", "buildCommandArgs": "", "ctestCommandArgs": "", - "inheritEnvironments": [ "msvc_x86" ], - "variables": [] + "inheritEnvironments": [ "msvc_x86" ] + }, + { + "name": "x64-Debug", + "generator": "Ninja", + "configurationType": "Debug", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x64_x64" ] } ] } \ No newline at end of file