summaryrefslogtreecommitdiff
path: root/src/ildasm/unixcoreclrloader/CMakeLists.txt
blob: 596e58325a6b3c6a554c3a66e931ed6d2f901c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project(unixcoreclrloader)

if(CLR_CMAKE_PLATFORM_UNIX)
    add_compile_options(-fPIC)
endif(CLR_CMAKE_PLATFORM_UNIX)

include_directories(${CMAKE_SOURCE_DIR}/src/coreclr/hosts/unixcoreruncommon)
add_library(unixcoreclrloader
    STATIC
    coreclrloader.cpp
)

target_link_libraries(unixcoreclrloader
    unixcoreruncommon
)