forked from Green-Sky/tomato
		
	git-subtree-dir: external/entt/entt git-subtree-split: fef921132cae7588213d0f9bcd2fb9c8ffd8b7fc
		
			
				
	
	
		
			20 lines
		
	
	
		
			432 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			432 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| from conans import ConanFile, CMake
 | |
| import os
 | |
| 
 | |
| 
 | |
| class TestPackageConan(ConanFile):
 | |
|     settings = "os", "compiler", "build_type", "arch"
 | |
|     generators = "cmake"
 | |
| 
 | |
|     def build(self):
 | |
|         cmake = CMake(self)
 | |
|         cmake.configure()
 | |
|         cmake.build()
 | |
| 
 | |
|     def test(self):
 | |
|         bin_path = os.path.join("bin", "test_package")
 | |
|         self.run(bin_path, run_environment=True)
 |