You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
726 B
17 lines
726 B
#增加RCC++依赖包(专为自行编译RCCPP提供,直接使用已有RCCPP目录则无需执行--注意命令执行位置) |
|
mkdir third_party |
|
git clone https://github.com/RuntimeCompiledCPlusPlus/RuntimeCompiledCPlusPlus.git |
|
cd RuntimeCompiledCPlusPlus/Aurora |
|
rm -Path build -Recurse -Force |
|
mkdir build |
|
cd build |
|
cmake .. -DCMAKE_INSTALL_PREFIX="D:/aigc/Libs/RCCPP" -DINSTALL_CMAKE_CONFIG=ON -DBUILD_SHARED_LIBS=ON -G "Visual Studio 17 2022" -A x64 -DCMAKE_POLICY_VERSION_MINIMUM="4.0.2" |
|
cmake --build . --config Debug --target install |
|
|
|
|
|
#工程编译 |
|
cd D:/aigc/manta/uft_dev_server |
|
rm -Path build -Recurse -Force |
|
cmake -B build -DCMAKE_TOOLCHAIN_FILE="D:/aigc/vcpkg/scripts/buildsystems/vcpkg.cmake" |
|
cmake --build build |
|
|
|
|