File tree 2 files changed +6
-10
lines changed
2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 41
41
apt-get -y install qtbase5-dev libqt5svg5-dev
42
42
apt-get -y install libxcb-cursor0 # Dependencies for "xcb" Qt plugin(actually needed for Qt6)
43
43
apt-get -y install libocct-data-exchange-dev libocct-draw-dev occt-misc
44
- apt-get -y install libtbb2-dev libxi-dev # Dependencies for OpenCascade v7.5
44
+ apt-get -y install libxi-dev # Dependencies for OpenCascade v7.5(maybe needs libtbb2-dev)
45
45
apt-get -y install libassimp-dev
46
46
;;
47
47
fedora*)
Original file line number Diff line number Diff line change @@ -11,18 +11,13 @@ jobs:
11
11
uses : actions/checkout@v2
12
12
13
13
- name : Install Qt
14
- uses : jurplel/install-qt-action@v3
15
- with :
16
- cache : true
17
- cache-key-prefix : QtCache
14
+ run : brew install qt@5
18
15
19
16
- name : Install OpenCascade
20
- run : |
21
- brew install opencascade
17
+ run : brew install opencascade
22
18
23
19
- name : Install Assimp
24
- run : |
25
- brew install assimp
20
+ run : brew install assimp
26
21
27
22
- name : Get count of CPU cores
28
23
uses : SimenB/github-actions-cpu-cores@v1
35
30
cmake --version
36
31
cmake .. \
37
32
-DMayo_BuildTests=ON \
38
- -DMayo_BuildPluginAssimp=ON
33
+ -DMayo_BuildPluginAssimp=ON \
34
+ -DQT_DIR=$(brew --prefix qt5)/lib/cmake/Qt5
39
35
cmake --build . \
40
36
--config Release \
41
37
--parallel ${{steps.cpu-cores.outputs.count}}
You can’t perform that action at this time.
0 commit comments