We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ef73ba commit fdd7da1Copy full SHA for fdd7da1
2 files changed
.github/workflows/multi-platform.yml
@@ -14,12 +14,12 @@ jobs:
14
config:
15
- name: Windows
16
os: windows-latest
17
+
18
+ - name: macOS
19
+ os: macos-latest
20
21
# TODO: uncomment platforms when we own the libs for them
22
- #- name: macOS
- # os: macos-latest
-
23
#- name: Android32
24
# os: ubuntu-latest
25
# target: Android32
CMakeLists.txt
@@ -3,6 +3,7 @@ set(CMAKE_CXX_STANDARD 20)
3
set(CMAKE_CXX_STANDARD_REQUIRED ON)
4
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
5
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
6
+set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
7
8
if (MSVC)
9
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
0 commit comments