26 lines
		
	
	
		
			611 B
		
	
	
	
		
			CMake
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			611 B
		
	
	
	
		
			CMake
		
	
	
| # Install headers
 | |
| file(GLOB linear_headers "*.h")
 | |
| install(FILES ${linear_headers} DESTINATION include/gtsam_unstable/linear)
 | |
| 
 | |
| # Components to link tests in this subfolder against
 | |
| set(linear_local_libs
 | |
|    linear_unstable
 | |
|    nonlinear
 | |
|    linear
 | |
|    inference
 | |
|    geometry
 | |
|    base
 | |
|    ccolamd
 | |
| )
 | |
| 
 | |
| set (linear_full_libs
 | |
|     ${gtsam-default}
 | |
|     ${gtsam_unstable-default})
 | |
| 
 | |
| # Exclude tests that don't work
 | |
| set (base_excluded_tests "")
 | |
| 
 | |
| # Add all tests
 | |
| gtsam_add_subdir_tests(linear_unstable "${linear_local_libs}" "${linear_full_libs}" "${linear_excluded_tests}") 
 | |
| add_dependencies(check.unstable check.linear_unstable)
 |