[Tizen] Disable jithost arena cache
[platform/upstream/coreclr.git] / src / corefx / CMakeLists.txt
1
2 # This portion of the tree is for portions of CoreFX libraries which are (1) best
3 # suited to having been implemented in native code and (2) need to be invoked from
4 # mscorlib.dll. If mscorlib.dll does not use the library, the code should go in
5 # the src/Native directory of dotnet/corefx.
6 #
7 # The libraries should disable the "lib" prefix, and use an assembly-style naming format,
8 # such as System.Security.Cryptography.Native (shared across multiple System.Security.Cryptography.*
9 # assemblies) or System.Diagnostics.Process.Native (a native interop library for
10 # System.Diagnostics.Process.dll).
11
12 remove_definitions(-D_WIN64)
13
14 if(CLR_CMAKE_PLATFORM_UNIX)
15   add_subdirectory(System.Globalization.Native)
16 endif(CLR_CMAKE_PLATFORM_UNIX)