summaryrefslogtreecommitdiff
path: root/src/gc/unix/CMakeLists.txt
blob: fbb94fd5130c2469ddcab4006a209e4eab31af63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
set(CMAKE_INCLUDE_CURRENT_DIR ON)
add_compile_options(-fPIC)
include_directories("../env")

include(configure.cmake)

set(GC_PAL_SOURCES
    gcenv.unix.cpp
    events.cpp
    cgroup.cpp
    cpuinfo.cpp)

add_library(gc_unix STATIC ${GC_PAL_SOURCES} ${VERSION_FILE_PATH})