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

set(CMAKE_INCLUDE_CURRENT_DIR ON)

include(configure.cmake)

_add_library(unixcoreruncommon
    STATIC
    coreruncommon.cpp
)

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