Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/utilcode/CMakeLists.txt')
-rw-r--r--src/coreclr/utilcode/CMakeLists.txt130
1 files changed, 130 insertions, 0 deletions
diff --git a/src/coreclr/utilcode/CMakeLists.txt b/src/coreclr/utilcode/CMakeLists.txt
new file mode 100644
index 00000000000..c7c5861f129
--- /dev/null
+++ b/src/coreclr/utilcode/CMakeLists.txt
@@ -0,0 +1,130 @@
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(UTILCODE_COMMON_SOURCES
+ clrhost_nodependencies.cpp
+ ccomprc.cpp
+ ex.cpp
+ sbuffer.cpp
+ sstring_com.cpp
+ fstring.cpp
+ namespaceutil.cpp
+ makepath.cpp
+ splitpath.cpp
+ clrconfig.cpp
+ configuration.cpp
+ collections.cpp
+ posterror.cpp
+ fstream.cpp
+ clrhelpers.cpp
+ stgpool.cpp
+ stgpooli.cpp
+ stgpoolreadonly.cpp
+ utsem.cpp
+ peinformation.cpp
+ check.cpp
+ log.cpp
+ arraylist.cpp
+ bitvector.cpp
+ comex.cpp
+ guidfromname.cpp
+ memorypool.cpp
+ iallocator.cpp
+ loaderheap.cpp
+ outstring.cpp
+ ilformatter.cpp
+ opinfo.cpp
+ corimage.cpp
+ format1.cpp
+ prettyprintsig.cpp
+ regutil.cpp
+ sha1.cpp
+ sigbuilder.cpp
+ sigparser.cpp
+ sstring.cpp
+ util_nodependencies.cpp
+ utilmessagebox.cpp
+ safewrap.cpp
+ clrhost.cpp
+ cycletimer.cpp
+ md5.cpp
+ util.cpp
+ stresslog.cpp
+ debug.cpp
+ pedecoder.cpp
+ winfix.cpp
+ longfilepathwrappers.cpp
+ yieldprocessornormalized.cpp
+)
+
+# These source file do not yet compile on Linux.
+# They should be moved out from here into the declaration
+# of UTILCODE_SOURCES above after fixing compiler errors.
+if(CLR_CMAKE_TARGET_WIN32)
+ list(APPEND UTILCODE_COMMON_SOURCES
+ dacutil.cpp
+ dlwrap.cpp
+ securitywrapper.cpp
+ securityutil.cpp
+ stacktrace.cpp
+ )
+endif(CLR_CMAKE_TARGET_WIN32)
+
+set(UTILCODE_SOURCES
+ ${UTILCODE_COMMON_SOURCES}
+)
+
+set(UTILCODE_DAC_SOURCES
+ ${UTILCODE_COMMON_SOURCES}
+ hostimpl.cpp
+)
+
+set(UTILCODE_CROSSGEN_SOURCES
+ ${UTILCODE_COMMON_SOURCES}
+ hostimpl.cpp
+)
+
+set(UTILCODE_STATICNOHOST_SOURCES
+ ${UTILCODE_COMMON_SOURCES}
+ hostimpl.cpp
+)
+
+set (UTILCODE_DEPENDENCIES eventing_headers)
+
+convert_to_absolute_path(UTILCODE_SOURCES ${UTILCODE_SOURCES})
+convert_to_absolute_path(UTILCODE_DAC_SOURCES ${UTILCODE_DAC_SOURCES})
+convert_to_absolute_path(UTILCODE_CROSSGEN_SOURCES ${UTILCODE_CROSSGEN_SOURCES})
+convert_to_absolute_path(UTILCODE_STATICNOHOST_SOURCES ${UTILCODE_STATICNOHOST_SOURCES})
+
+add_library_clr(utilcode_dac STATIC ${UTILCODE_DAC_SOURCES})
+add_library_clr(utilcode_obj OBJECT ${UTILCODE_SOURCES})
+add_library(utilcode INTERFACE)
+target_sources(utilcode INTERFACE $<TARGET_OBJECTS:utilcode_obj>)
+add_library_clr(utilcodestaticnohost STATIC ${UTILCODE_STATICNOHOST_SOURCES})
+add_library_clr(utilcode_crossgen STATIC ${UTILCODE_CROSSGEN_SOURCES})
+
+if(CLR_CMAKE_HOST_UNIX)
+ target_link_libraries(utilcodestaticnohost nativeresourcestring)
+ target_link_libraries(utilcode_crossgen nativeresourcestring)
+ target_link_libraries(utilcode_dac nativeresourcestring)
+ target_link_libraries(utilcode INTERFACE nativeresourcestring)
+ add_dependencies(utilcode_dac coreclrpal)
+ add_dependencies(utilcode_obj coreclrpal)
+endif(CLR_CMAKE_HOST_UNIX)
+
+
+if(CLR_CMAKE_HOST_WIN32)
+ target_compile_definitions(utilcodestaticnohost PRIVATE _CRTIMP=) # use static version of crt
+endif(CLR_CMAKE_HOST_WIN32)
+
+set_target_properties(utilcode_dac PROPERTIES DAC_COMPONENT TRUE)
+set_target_properties(utilcode_crossgen PROPERTIES CROSSGEN_COMPONENT TRUE)
+target_compile_definitions(utilcode_dac PRIVATE SELF_NO_HOST)
+target_compile_definitions(utilcodestaticnohost PRIVATE SELF_NO_HOST)
+add_dependencies(utilcode_dac ${UTILCODE_DEPENDENCIES})
+add_dependencies(utilcode_obj ${UTILCODE_DEPENDENCIES})
+add_dependencies(utilcode_crossgen ${UTILCODE_DEPENDENCIES})
+add_dependencies(utilcodestaticnohost ${UTILCODE_DEPENDENCIES})
+target_precompile_headers(utilcode_dac PRIVATE [["stdafx.h"]])
+target_precompile_headers(utilcode_obj PRIVATE [["stdafx.h"]])
+target_precompile_headers(utilcode_crossgen PRIVATE [["stdafx.h"]])
+target_precompile_headers(utilcodestaticnohost PRIVATE [["stdafx.h"]])