diff options
author | GPUCode <geoster3d@gmail.com> | 2023-11-17 20:22:38 +0200 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2023-11-25 00:46:15 -0500 |
commit | 20011dfeb8d1fa00a862e9b31ce10ceca8015fa2 (patch) | |
tree | 9c1ab232863147e0121ed62276528fc59accdf7c /src/common/CMakeLists.txt | |
parent | 5a182f4e7ccfac696cd54542089c880d002f5cc9 (diff) |
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) target_link_libraries(common PRIVATE ntdll) endif() +if (NOT WIN32) + target_sources(common PRIVATE + signal_chain.cpp + signal_chain.h + ) +endif() + if(ANDROID) target_sources(common PRIVATE |