mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Removed cotire PCH Integrated native PCH by CMake with the same BUILD_USE_PCH flag Added new option to avoid extra files in 'build/include' folder and replace it by symlink Symlink creates link to the origin file, it has some benefits from debug and build side. The CMake parameter for symlink is 'BUILD_INCLUDE_SYMLINK'
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
# This workflow will build OCCT on Windows with MSVC x64 in dynamic mode
|
|
# using the provided Docker image with MSVC tools.
|
|
#
|
|
# Notes:
|
|
# freetype is disabled
|
|
# Draw module is disabled
|
|
# samples are not built
|
|
|
|
name: Build OCCT on Windows with MSVC x64 dynamic
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
build-windows-msvc:
|
|
name: Build on Windows with MSVC
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4.1.7
|
|
|
|
- name: Set up MSVC
|
|
uses: ilammy/msvc-dev-cmd@v1.13.0
|
|
with:
|
|
arch: x64
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' -y
|
|
choco install magicsplat-tcl-tk -y
|
|
|
|
- name: Configure OCCT
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
cmake -T host=x64 -D USE_FREETYPE=OFF -D BUILD_USE_PCH=ON -D BUILD_INCLUDE_SYMLINK=ON -D BUILD_MODULE_Draw=OFF -D CMAKE_BUILD_TYPE=Release -D CMAKE_C_FLAGS="/WX" -D CMAKE_CXX_FLAGS="/WX" ..
|
|
|
|
- name: Build OCCT
|
|
run: |
|
|
cd build
|
|
cmake --build . --config Release -- /m
|