mirror of
				https://github.com/bytecodealliance/wasm-micro-runtime.git
				synced 2025-10-31 21:27:30 +00:00 
			
		
		
		
	 923e8d6471
			
		
	
	
		923e8d6471
		
			
		
	
	
	
	
		
			
			- Fix windows wamrc link error: aot_generate_tempfile_name undefined. - Clear windows compile warnings. - And rename folder `samples/bh_atomic` and `samples/mem_allocator` to `samples/bh-atomic` and `samples/mem-allocator`.
		
			
				
	
	
		
			21 lines
		
	
	
		
			535 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			535 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # Copyright (C) 2023 Midokura Japan KK.  All rights reserved.
 | |
| # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 | |
| 
 | |
| cmake_minimum_required(VERSION 3.0)
 | |
| project(bh_atomic)
 | |
| 
 | |
| string (TOLOWER ${CMAKE_HOST_SYSTEM_NAME} WAMR_BUILD_PLATFORM)
 | |
| if(APPLE)
 | |
|   add_definitions(-DBH_PLATFORM_DARWIN)
 | |
| endif()
 | |
| 
 | |
| set(WAMR_BUILD_INTERP 1)
 | |
| set(WAMR_BUILD_LIBC_BUILTIN 0)
 | |
| 
 | |
| set(WAMR_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../..)
 | |
| include(${WAMR_ROOT_DIR}/build-scripts/runtime_lib.cmake)
 | |
| 
 | |
| add_executable(bh_atomic main.c)
 | |
| 
 | |
| target_link_libraries(bh_atomic)
 |