You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							406 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							406 B
						
					
					
				| #This should build a single serial version of nas2exo
 | |
| #This build is open to any compiler
 | |
| 
 | |
| TRIBITS_SUBPACKAGE(Nas2exo)
 | |
| 
 | |
| TRIBITS_INCLUDE_DIRECTORIES("${CMAKE_CURRENT_SOURCE_DIR}")
 | |
| 
 | |
| 
 | |
| SET(HEADERS "")
 | |
| 
 | |
| APPEND_GLOB(SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.C)
 | |
| 
 | |
| TRIBITS_ADD_EXECUTABLE(
 | |
| 	nas2exo
 | |
| 	NOEXEPREFIX
 | |
|  	NOEXESUFFIX
 | |
| 	SOURCES ${SOURCES}
 | |
| 	COMM serial mpi
 | |
|         INSTALLABLE
 | |
| 	)
 | |
| 
 | |
| TRIBITS_SUBPACKAGE_POSTPROCESS()
 | |
| 
 |