File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ set(NBL_SYSTEM_SOURCES
181
181
${NBL_ROOT_PATH} /src/nbl/system/CFilePOSIX.cpp
182
182
${NBL_ROOT_PATH} /src/nbl/system/CSystemWin32.cpp
183
183
${NBL_ROOT_PATH} /src/nbl/system/CSystemAndroid.cpp
184
+ ${NBL_ROOT_PATH} /src/nbl/system/ISystemPOSIX.cpp
184
185
${NBL_ROOT_PATH} /src/nbl/system/CSystemLinux.cpp
185
186
)
186
187
set (NBL_UI_SOURCES
@@ -429,6 +430,7 @@ if (UNIX)
429
430
${CMAKE_THREAD_LIBS_INIT}
430
431
${CMAKE_DL_LIBS}
431
432
)
433
+ target_link_libraries (Nabla PUBLIC atomic )
432
434
endif ()
433
435
# OpenSSL
434
436
if (ANDROID AND NOT "${CMAKE_HOST_SYSTEM_NAME} " STREQUAL "Windows" ) # OpenSSL can't be built for Android platform using windows OS host
Original file line number Diff line number Diff line change 6
6
using namespace nbl ;
7
7
using namespace nbl ::system;
8
8
9
- #if defined(_NBL_PLATFORM_LINUX_) || defined (_NBL_PLATFORM_ANDROID_)
9
+ #if defined(_NBL_PLATFORM_LINUX_) || defined(_NBL_PLATFORM_ANDROID_)
10
10
11
11
#include < fcntl.h>
12
12
#include < sys/mman.h>
You can’t perform that action at this time.
0 commit comments