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'
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
# This workflow builds OCCT on macOS with Clang x64 dynamic.
|
|
#
|
|
# Notes:
|
|
# freetype is disabled
|
|
# samples are not built
|
|
|
|
name: Build OCCT on macOS with Clang x64 dynamic
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
build-macos-clang:
|
|
name: Build on macOS with Clang
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4.1.7
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
brew update
|
|
brew install tcl-tk tbb gl2ps xerces-c \
|
|
libxmu libxi libxft libxpm \
|
|
glew
|
|
|
|
- name: Configure OCCT
|
|
run: |
|
|
mkdir -p build
|
|
cd build
|
|
cmake -G "Unix Makefiles" \
|
|
-D CMAKE_C_COMPILER=clang \
|
|
-D CMAKE_CXX_COMPILER=clang++ \
|
|
-D USE_FREETYPE=OFF \
|
|
-D BUILD_USE_PCH=ON \
|
|
-D BUILD_INCLUDE_SYMLINK=ON \
|
|
-D CMAKE_BUILD_TYPE=Release ..
|
|
|
|
- name: Build OCCT
|
|
run: |
|
|
cd build
|
|
make -j$(sysctl -n hw.logicalcpu)
|