this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

nls builds

+14 -1
+3 -1
libc/CMakeLists.txt
··· 59 59 add_subdirectory(regex) 60 60 add_subdirectory(pthreads) 61 61 add_subdirectory(posix1e) 62 + add_subdirectory(nls) 62 63 63 64 add_library(system_c SHARED 64 65 $<TARGET_OBJECTS:libc-db> ··· 80 81 $<TARGET_OBJECTS:libc-regex> 81 82 $<TARGET_OBJECTS:libc-pthreads> 82 83 $<TARGET_OBJECTS:libc-pthreads_cancelable> 83 - $<TARGET_OBJECTS:libc-posix1e>) 84 + $<TARGET_OBJECTS:libc-posix1e> 85 + $<TARGET_OBJECTS:libc-nls>) 84 86 85 87 # TODO: see ./xcodescripts/variants.xcconfig 86 88
+11
libc/nls/CMakeLists.txt
··· 1 + project(libc-nls) 2 + 3 + cmake_minimum_required(VERSION 2.4.0) 4 + 5 + include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../include/FreeBSD) 6 + 7 + set(nls_sources 8 + FreeBSD/msgcat.c 9 + ) 10 + 11 + add_library(libc-nls OBJECT ${nls_sources})