CMakeLists.txt 287 B

123456789101112
  1. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. cmake_minimum_required(VERSION 3.14)
  4. project(host)
  5. set(CMAKE_BUILD_TYPE Debug)
  6. #
  7. # host
  8. add_executable(example1 ./example1.c)
  9. target_link_libraries(example1 vmlib)