summaryrefslogtreecommitdiff
path: root/src/corefx/CMakeLists.txt
blob: 5abcaa32c9f9e0ca4833dfb8ad48ef1f0206ad23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

# This portion of the tree is for portions of CoreFX libraries which are (1) best
# suited to having been implemented in native code and (2) need to be invoked from
# mscorlib.dll. If mscorlib.dll does not use the library, the code should go in
# the src/Native directory of dotnet/corefx.
#
# The libraries should disable the "lib" prefix, and use an assembly-style naming format,
# such as System.Security.Cryptography.Native (shared across multiple System.Security.Cryptography.*
# assemblies) or System.Diagnostics.Process.Native (a native interop library for
# System.Diagnostics.Process.dll).

remove_definitions(-D_WIN64)

if(CLR_CMAKE_PLATFORM_UNIX)
  add_subdirectory(System.Globalization.Native)
endif(CLR_CMAKE_PLATFORM_UNIX)