summaryrefslogtreecommitdiff
path: root/src/coreclr/hosts/unixcoreruncommon/CMakeLists.txt
blob: a17e0a0fd6c9eec8512e38d4d561ce14060cb18b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
project(unixcoreruncommon)

add_compile_options(-fPIC)

_add_library(unixcoreruncommon
    STATIC
    coreruncommon.cpp
)

if(CLR_CMAKE_PLATFORM_LINUX)
  target_link_libraries(unixcoreruncommon dl)
endif(CLR_CMAKE_PLATFORM_LINUX)