环境配置

TODO:添加点云模块,仿真算法算例
master
剑古敛锋 2024-03-20 15:33:49 +08:00
parent fd6e20f752
commit 24f74b5d99
1319 changed files with 217147 additions and 1303 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

1
.idea/.name Normal file
View File

@ -0,0 +1 @@
LAMPCAE

2
.idea/FastCAE.iml Normal file
View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<module classpath="CMake" type="CPP_MODULE" version="4" />

26
.idea/QtSettings.xml Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="QtSettings">
<option name="myCurrentProfile" value="Release" />
<option name="mySettingsPerProfile">
<map>
<entry key="Debug">
<value>
<PerProfileState>
<option name="myQmlPath" value="C:/Qt/5.15.2/msvc2019_64/qml" />
<option name="myQtBinPath" value="C:/Qt/5.15.2/msvc2019_64/bin" />
</PerProfileState>
</value>
</entry>
<entry key="Release">
<value>
<PerProfileState>
<option name="myQmlPath" value="C:/Qt/5.15.2/msvc2019_64/qml" />
<option name="myQtBinPath" value="C:/Qt/5.15.2/msvc2019_64/bin" />
</PerProfileState>
</value>
</entry>
</map>
</option>
</component>
</project>

View File

@ -0,0 +1,7 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<clangFormatSettings>
<option name="ENABLED" value="true" />
</clangFormatSettings>
</code_scheme>
</component>

View File

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
</state>
</component>

4
.idea/misc.xml Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
</project>

9
.idea/modules.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/FastCAE.iml" filepath="$PROJECT_DIR$/.idea/FastCAE.iml" />
<module fileurl="file://$PROJECT_DIR$/.idea/LAMPCAE.iml" filepath="$PROJECT_DIR$/.idea/LAMPCAE.iml" />
</modules>
</component>
</project>

7
.idea/vcs.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$/extlib" vcs="Git" />
</component>
</project>

View File

@ -4,16 +4,13 @@
# cmake
cmake_minimum_required(VERSION 3.21 FATAL_ERROR)
#
project(FastCAE
project(LAMPCAE
VERSION 2.5.0
LANGUAGES CXX
DESCRIPTION "LAMPCAE,FastCAE仿"
HOMEPAGE_URL "http://124.16.188.131:9699/web/server3/build/#/Guide/"
DESCRIPTION "LAMPCAE , FastCAECAE仿"
HOMEPAGE_URL "http://www.LAMPCAE.com/"
)
# vcpkg
set(CMAKE_TOOLCHAIN_FILE D:/vcpkg/scripts/buildsystems/vcpkg.cmake)
#-----------------------------------------------------------------------------
#
#-----------------------------------------------------------------------------
@ -31,12 +28,12 @@ set(BUILD_SHARED_LIBS ON)
#
#-----------------------------------------------------------------------------
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
set(FASTCAE_LINUX True)
set(LAMPCAE_LINUX True)
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX "/opt/${PROJECT_NAME}" CACHE PATH "${PROJECT_NAME}的安装路径" FORCE)
endif()
elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows")
set(FASTCAE_WIN True)
set(LAMPCAE_WIN True)
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX "c:/Program Files/${PROJECT_NAME}" CACHE PATH "${PROJECT_NAME}的安装路径" FORCE)
endif()
@ -47,14 +44,15 @@ endif()
#-----------------------------------------------------------------------------
# (cmakeIDEQt)
#-----------------------------------------------------------------------------
set(LAMPCAE_WIN ON)
set(CMAKE_INSTALL_PREFIX "${CMAKE_SOURCE_DIR}/install")
message(STATUS "${PROJECT_NAME} will be installed to ${CMAKE_INSTALL_PREFIX}")
if (NOT DEFINED Qt5_DIR)
if(FASTCAE_LINUX)
if(LAMPCAE_LINUX)
set(Qt5_DIR "/opt/Qt5.14.2/5.14.2/gcc_64/lib/cmake/Qt5" CACHE PATH "Qt5Config.cmake所在目录" FORCE)
elseif(FASTCAE_WIN)
set(Qt5_DIR "D:/Qt/Qt5.14.2/5.14.2/msvc2017_64/lib/cmake/Qt5" CACHE PATH "Qt5Config.cmake所在目录" FORCE)
elseif(LAMPCAE_WIN)
set(Qt5_DIR "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5" CACHE PATH "Qt5Config.cmake所在目录" FORCE)
endif()
endif()
@ -62,14 +60,14 @@ endif()
#
#-----------------------------------------------------------------------------
#
option(FASTCAE_ENABLE_DEV "ON:开启代码调试OFF:仅安装程序" ON)
option(LAMPCAE_ENABLE_DEV "ON:开启代码调试OFF:仅安装程序" ON)
#
option(FASTCAE_AUTO_DOWNLOAD "如果extlib不存在则自动下载(git)依赖库" ON)
option(FASTCAE_ENABLE_OPENMP "使用OpenMP" OFF)
option(FASTCAE_ENABLE_MPI "使用MPI" OFF)
option(FASTCAE_DOXYGEN_DOC "生成Doxygen文档" OFF)
option(FASTCAE_INSTALLATION_PACKAGE "生成${PROJECT_NAME}安装包" ON)
option(FASTCAE_DEBUG_INFO "输出调试信息" ON)
option(LAMPCAE_AUTO_DOWNLOAD "如果extlib不存在则自动下载(git)依赖库" ON)
option(LAMPCAE_ENABLE_OPENMP "使用OpenMP" OFF)
option(LAMPCAE_ENABLE_MPI "使用MPI" OFF)
option(LAMPCAE_DOXYGEN_DOC "生成Doxygen文档" ON)
option(LAMPCAE_INSTALLATION_PACKAGE "生成${PROJECT_NAME}安装包" ON)
option(LAMPCAE_DEBUG_INFO "输出调试信息" ON)
#-----------------------------------------------------------------------------
#
@ -96,27 +94,27 @@ endif()
#-----------------------------------------------------------------------------
# OpenMP使OpenMP::OpenMP_CXX
#-----------------------------------------------------------------------------
if(FASTCAE_ENABLE_OPENMP)
if(LAMPCAE_ENABLE_OPENMP)
find_package(OpenMP)
if(OpenMP_CXX_FOUND)
add_definitions(-DFASTCAE_HAS_OPENMP)
add_definitions(-DLAMPCAE_HAS_OPENMP)
endif()
endif()
#-----------------------------------------------------------------------------
# MPI${MPI_CXX_INCLUDE_DIRS} 使MPI::MPI_CXX
#-----------------------------------------------------------------------------
if(FASTCAE_ENABLE_MPI)
if(LAMPCAE_ENABLE_MPI)
find_package(MPI)
if(MPI_CXX_FOUND)
add_definitions(-DFASTCAE_HAS_MPI)
add_definitions(-DLAMPCAE_HAS_MPI)
endif()
endif()
#-----------------------------------------------------------------------------
#
#-----------------------------------------------------------------------------
if(FASTCAE_DEBUG_INFO)
if(LAMPCAE_DEBUG_INFO)
add_definitions(-DOUTPUT_DEBUG_INFO)
endif()
@ -136,14 +134,8 @@ list(APPEND QtNeededModules
OpenGL # Qwt
PrintSupport # QwtPolar
DBus
Qml
Sql
PrintSupport
QuickWidgets
DataVisualization
Charts
)
if(FASTCAE_LINUX)
if(LAMPCAE_LINUX)
list(APPEND QtNeededModules XcbQpa)
endif()
@ -160,11 +152,11 @@ endif()
#-----------------------------------------------------------------------------
#
#-----------------------------------------------------------------------------
if(FASTCAE_AUTO_DOWNLOAD AND NOT EXISTS ${CMAKE_SOURCE_DIR}/extlib)
if(FASTCAE_WIN)
set(_extlibGitAddr "https://gitee.com/DISOGitee/FastCAEWinExtlib.git")
elseif(FASTCAE_LINUX)
set(_extlibGitAddr "https://gitee.com/DISOGitee/FastCAELinuxExtlib.git")
if(LAMPCAE_AUTO_DOWNLOAD AND NOT EXISTS ${CMAKE_SOURCE_DIR}/extlib)
if(LAMPCAE_WIN)
set(_extlibGitAddr "https://gitee.com/DISOGitee/LAMPCAEWinExtlib.git")
elseif(LAMPCAE_LINUX)
set(_extlibGitAddr "https://gitee.com/DISOGitee/LAMPCAELinuxExtlib.git")
endif()
find_package(Git REQUIRED)
@ -183,18 +175,12 @@ if(FASTCAE_AUTO_DOWNLOAD AND NOT EXISTS ${CMAKE_SOURCE_DIR}/extlib)
endif()
#-----------------------------------------------------------------------------
# FastCAE
# LAMPCAE
#-----------------------------------------------------------------------------
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
# boost
set(BOOST_ROOT "D:/vcpkg/installed/x64-windows")
set(BOOST_INCLUDE_DIRS "${BOOST_ROOT}/include")
set(BOOST_LIBRARY_DIRS "${BOOST_ROOT}/lib")
find_package(Boost REQUIRED)
# VTK
find_package(VTK 9.3 REQUIRED )
find_package(VTK REQUIRED)
# OpenCASCADE
find_package(OpenCASCADE REQUIRED)
@ -220,10 +206,6 @@ find_package(Gmsh REQUIRED)
# Python
find_package(Python REQUIRED)
# PCL
find_package(PCL REQUIRED)
#-----------------------------------------------------------------------------
# pythoncmake
#-----------------------------------------------------------------------------
@ -235,7 +217,6 @@ find_package(PCL REQUIRED)
#
#-----------------------------------------------------------------------------
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# cmaketarget
#set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "Predefined")
@ -248,22 +229,22 @@ set(CMAKE_INSTALL_LIBDIR "lib")
#-----------------------------------------------------------------------------
#
#-----------------------------------------------------------------------------
if(FASTCAE_WIN)
if(LAMPCAE_WIN)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Debug)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Debug)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Debug)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Release)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Release)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Release)
if(FASTCAE_ENABLE_DEV)
if(LAMPCAE_ENABLE_DEV)
set(DEVRUNTIME_BINDIR_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG})
set(DEVRUNTIME_BINDIR_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE})
endif()
elseif(FASTCAE_LINUX)
elseif(LAMPCAE_LINUX)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR})
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR})
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
if(FASTCAE_ENABLE_DEV)
if(LAMPCAE_ENABLE_DEV)
set(DEVRUNTIME_BINDIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
set(DEVRUNTIME_LIBDIR ${CMAKE_LIBRARY_OUTPUT_DIRECTORY})
endif()
@ -273,7 +254,7 @@ endif()
#
#-----------------------------------------------------------------------------
set(INSTALL_BINDIR ${CMAKE_INSTALL_BINDIR})
if(FASTCAE_WIN)
if(LAMPCAE_WIN)
set(INSTALL_LIBDIR ${CMAKE_INSTALL_BINDIR})
else()
set(INSTALL_LIBDIR ${CMAKE_INSTALL_LIBDIR})
@ -292,8 +273,8 @@ add_subdirectory(src)
#-----------------------------------------------------------------------------
# Ctest
#-----------------------------------------------------------------------------
option(FASTCAE_ENABLE_TEST "开启单元测试(尚未开发完成)" OFF)
if(FASTCAE_ENABLE_TEST)
option(LAMPCAE_ENABLE_TEST "开启单元测试(尚未开发完成)" OFF)
if(LAMPCAE_ENABLE_TEST)
#
enable_testing()
#
@ -303,7 +284,7 @@ endif()
#-----------------------------------------------------------------------------
# (Doxygen + Breathe + Sphinx)
#-----------------------------------------------------------------------------
if(FASTCAE_DOXYGEN_DOC)
if(LAMPCAE_DOXYGEN_DOC)
find_package(Doxygen REQUIRED)
if(DOXYGEN_FOUND)
message(STATUS "Found doc generate Tool: Doxygen")
@ -332,8 +313,8 @@ endif()
#-----------------------------------------------------------------------------
# (windowsNSIS 3.03+)
#-----------------------------------------------------------------------------
if(FASTCAE_INSTALLATION_PACKAGE)
if (FASTCAE_WIN)
if(LAMPCAE_INSTALLATION_PACKAGE)
if (LAMPCAE_WIN)
find_program(NSIS_EXECUTABLE NSIS.exe)
# WIX
#find_program(WIX_EXECUTABLE candle.exe)

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 12.0.2, 2024-03-15T20:26:48. -->
<!-- Written by QtCreator 12.0.2, 2024-03-18T09:45:23. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
@ -108,7 +108,7 @@
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}
-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG}</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug</value>
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
<value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value>
@ -164,7 +164,7 @@
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}
-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG}</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Release</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Release</value>
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
<value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value>
@ -218,7 +218,7 @@
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}
-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG}</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-RelWithDebInfo</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-RelWithDebInfo</value>
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
<value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value>
@ -273,7 +273,7 @@
-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG}</value>
<value type="int" key="EnableQmlDebugging">0</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Profile</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Profile</value>
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
<value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value>
@ -327,7 +327,7 @@
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}
-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG}</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-MinSizeRel</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-MinSizeRel</value>
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
<value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value>
@ -391,14 +391,14 @@
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
<value type="bool" key="PE.EnvironmentAspect.PrintOnRun">false</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">FastCAE</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.FastCAE</value>
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">FastCAE</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">LAMPCAE</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.LAMPCAE</value>
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">LAMPCAE</value>
<value type="bool" key="ProjectExplorer.RunConfiguration.Customized">false</value>
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">D:/WBFZCPP/source/build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug/Debug</value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">D:/WBFZCPP/source/build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug/Debug</value>
</valuemap>
<value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
</valuemap>

25
CMakePresets.json Normal file
View File

@ -0,0 +1,25 @@
{
"version": 3,
"configurePresets": [
{
"hidden": true,
"name": "Qt",
"cacheVariables": {
"CMAKE_PREFIX_PATH": "$env{QTDIR}"
},
"environment": {
"PATH": "$penv{PATH};$env{QTDIR}/bin"
},
"vendor": {
"qt-project.org/Qt": {
"checksum": "Sp19WUpde73JS7nK33HZMqVZTyI="
}
}
}
],
"vendor": {
"qt-project.org/Presets": {
"checksum": "+knLrtcP3xTAxZGDu4uUoEIBvBs="
}
}
}

55
CMakeUserPresets.json Normal file
View File

@ -0,0 +1,55 @@
{
"version": 3,
"configurePresets": [
{
"name": "Qt-Debug",
"inherits": "Qt-Default",
"binaryDir": "${sourceDir}/out/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-DQT_QML_DEBUG"
}
},
{
"name": "Qt-Release",
"inherits": "Qt-Default",
"binaryDir": "${sourceDir}/out/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"hidden": true,
"name": "Qt-Default",
"inherits": "5.15.2_msvc2019_64",
"vendor": {
"qt-project.org/Default": {
"checksum": "hFHqn7KAkQOhAQUh9kbJbv7R0NY="
}
}
},
{
"hidden": true,
"name": "5.15.2_msvc2019_64",
"inherits": "Qt",
"environment": {
"QTDIR": "C:/QT/5.15.2/MSVC2019_64"
},
"architecture": {
"strategy": "external",
"value": "x64"
},
"generator": "Ninja",
"vendor": {
"qt-project.org/Version": {
"checksum": "ptcEk6DrMo+x2qNR/kb8KvrnFFM="
}
}
}
],
"vendor": {
"qt-project.org/Presets": {
"checksum": "phjq3Wa78xncEM1Mjqgn2bZOHPo="
}
}
}

BIN
ConfigFiles/Hello.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

4
ConfigFiles/LAMPTool.qrc Normal file
View File

@ -0,0 +1,4 @@
<RCC>
<qresource prefix="LAMPTool">
</qresource>
</RCC>

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 392 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 616 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 866 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 917 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 667 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 763 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 704 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 651 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Some files were not shown because too many files have changed in this diff Show More