diff options
| author | 2016-10-10 06:38:39 +0000 | |
|---|---|---|
| committer | 2016-10-27 23:28:30 +0000 | |
| commit | 52da9de5c4855f0a89ae1019803327cba799b9e5 (patch) | |
| tree | a5916198373c11e2a9891940341fb2e25f6cc0b4 | |
| parent | build: libc may not provide iconv() on Unix (diff) | |
| download | yuzu-52da9de5c4855f0a89ae1019803327cba799b9e5.tar.gz yuzu-52da9de5c4855f0a89ae1019803327cba799b9e5.tar.xz yuzu-52da9de5c4855f0a89ae1019803327cba799b9e5.zip | |
build: clock_gettime() is in libc on BSDs
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e3f2ab8f..9fc4f5675 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -181,7 +181,7 @@ ELSEIF(MINGW) | |||
| 181 | add_definitions(-D_WIN32_WINNT=0x0600) | 181 | add_definitions(-D_WIN32_WINNT=0x0600) |
| 182 | ELSEIF(WIN32) | 182 | ELSEIF(WIN32) |
| 183 | set(PLATFORM_LIBRARIES winmm ws2_32) | 183 | set(PLATFORM_LIBRARIES winmm ws2_32) |
| 184 | ELSE() | 184 | ELSEIF(CMAKE_SYSTEM_NAME MATCHES "^(Linux|kFreeBSD|GNU|SunOS)$") |
| 185 | set(PLATFORM_LIBRARIES rt) | 185 | set(PLATFORM_LIBRARIES rt) |
| 186 | ENDIF (APPLE) | 186 | ENDIF (APPLE) |
| 187 | 187 | ||