mirror of
				https://github.com/roc-lang/roc.git
				synced 2025-10-29 20:27:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			203 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			203 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn main() {
 | |
|     #[cfg(not(windows))]
 | |
|     println!("cargo:rustc-link-lib=dylib=app");
 | |
| 
 | |
|     #[cfg(windows)]
 | |
|     println!("cargo:rustc-link-lib=dylib=libapp");
 | |
| 
 | |
|     println!("cargo:rustc-link-search=.");
 | |
| }
 | 
