diff options
| author | 2023-11-17 20:22:38 +0200 | |
|---|---|---|
| committer | 2023-11-25 00:46:15 -0500 | |
| commit | 20011dfeb8d1fa00a862e9b31ce10ceca8015fa2 (patch) | |
| tree | 9c1ab232863147e0121ed62276528fc59accdf7c /src/common/CMakeLists.txt | |
| parent | Merge pull request #11889 from t895/ini-lib (diff) | |
| download | yuzu-20011dfeb8d1fa00a862e9b31ce10ceca8015fa2.tar.gz yuzu-20011dfeb8d1fa00a862e9b31ce10ceca8015fa2.tar.xz yuzu-20011dfeb8d1fa00a862e9b31ce10ceca8015fa2.zip | |
common: Add libc sigaction hook
Diffstat (limited to 'src/common/CMakeLists.txt')
| -rw-r--r-- | src/common/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index e216eb3de..7107f4f78 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -166,6 +166,13 @@ if (WIN32) | |||
| 166 | target_link_libraries(common PRIVATE ntdll) | 166 | target_link_libraries(common PRIVATE ntdll) |
| 167 | endif() | 167 | endif() |
| 168 | 168 | ||
| 169 | if (NOT WIN32) | ||
| 170 | target_sources(common PRIVATE | ||
| 171 | signal_chain.cpp | ||
| 172 | signal_chain.h | ||
| 173 | ) | ||
| 174 | endif() | ||
| 175 | |||
| 169 | if(ANDROID) | 176 | if(ANDROID) |
| 170 | target_sources(common | 177 | target_sources(common |
| 171 | PRIVATE | 178 | PRIVATE |