occlum/demo/hello_c/CMakeLists.txt

7 lines
281 B
CMake

CMAKE_MINIMUM_REQUIRED(VERSION 3.5)
PROJECT(HELLO_WORLD LANGUAGES C VERSION 0.0.1)
SET(SRC_LIST "hello_world.c")
MESSAGE(STATUS "This is BINARY dir " ${HELLO_WORLD_BINARY_DIR})
MESSAGE(STATUS "This is SOURCE dir " ${HELLO_WORLD_SOURCE_DIR})
ADD_EXECUTABLE(hello_world ${SRC_LIST})