summaryrefslogtreecommitdiff
path: root/src/pal/src/examples/CMakeLists.txt
blob: 7f01f4523e6b3ea48c001fb7f07ccf52dd33ef85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
cmake_minimum_required(VERSION 2.8.12.2)
project(palexmpl)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(SOURCES
  example1.c
)

add_executable(palexmpl
  ${SOURCES}
)

add_dependencies(palexmpl CoreClrPal)

target_link_libraries(palexmpl
  pthread
  rt
  CoreClrPal
)