mirror of
				https://github.com/bytecodealliance/wasm-micro-runtime.git
				synced 2025-10-30 21:02:27 +00:00 
			
		
		
		
	 8f8c5605e9
			
		
	
	
		8f8c5605e9
		
			
		
	
	
	
	
		
			
			Raise wasi-sdk to 25 and wabt to 1.0.37. It includes - Refactor CI workflow to install WASI-SDK and WABT from a composite action - Use ExternalProject to bring wasm-apps for few samples. file/ wasi-threads/ - Refactor sample build and test steps in SGX compilation workflow for improved clarity and efficiency (workaround) Add CMake support for EMSCRIPTEN and WAMRC, update module paths
		
			
				
	
	
		
			12 lines
		
	
	
		
			405 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			405 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # Copyright (C) 2022 Intel Corporation.  All rights reserved.
 | |
| # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 | |
| 
 | |
| cmake_minimum_required(VERSION 3.14)
 | |
| project(file_wasm)
 | |
| 
 | |
| set (CMAKE_BUILD_TYPE Debug)  # Otherwise no debug symbols (addr2line)
 | |
| 
 | |
| add_executable(file main.c)
 | |
| set_target_properties (file PROPERTIES SUFFIX .wasm)
 | |
| install(FILES ${CMAKE_CURRENT_BINARY_DIR}/file.wasm DESTINATION wasm-app)
 |