module_config.h 501 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _MODULE_CONFIG_H_
  6. #define _MODULE_CONFIG_H_
  7. #define ENABLE_MODULE_JEFF 0
  8. #define ENABLE_MODULE_WASM_APP 1
  9. #define ENABLE_MODULE_WASM_LIB 1
  10. #ifdef ENABLE_MODULE_JEFF
  11. #include "module_jeff.h"
  12. #endif
  13. #ifdef ENABLE_MODULE_WASM_APP
  14. #include "module_wasm_app.h"
  15. #endif
  16. #ifdef ENABLE_MODULE_WASM_LIB
  17. #include "module_wasm_lib.h"
  18. #endif
  19. #endif /* _MODULE_CONFIG_H_ */