CMakeLists.txt 477 B

1234567891011121314
  1. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. cmake_minimum_required(VERSION 2.9)
  4. project(wasm-apps-custom-section)
  5. # Add -g option so there will be debugger related custom sections
  6. add_custom_target(app.wasm ALL
  7. COMMAND /opt/wasi-sdk/bin/clang -g -nostdlib
  8. -Wl,--no-entry,--export-all
  9. -o ${CMAKE_CURRENT_BINARY_DIR}/app.wasm
  10. ${CMAKE_CURRENT_LIST_DIR}/app.c
  11. )