30 lines
		
	
	
		
			512 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			512 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # Copyright (c) 2022 Dominic Masters
 | |
| # 
 | |
| # This software is released under the MIT License.
 | |
| # https://opensource.org/licenses/MIT
 | |
| 
 | |
| # Libs
 | |
| target_link_libraries(${DAWN_TARGET_NAME}
 | |
|   PUBLIC
 | |
|     glfw
 | |
|     glad
 | |
|     archive_static
 | |
|     Boxer
 | |
| )
 | |
| 
 | |
| # Includes
 | |
| target_include_directories(${DAWN_TARGET_NAME}
 | |
|   PUBLIC
 | |
|     ${CMAKE_CURRENT_LIST_DIR}
 | |
| )
 | |
| 
 | |
| # Sources
 | |
| target_sources(${DAWN_TARGET_NAME}
 | |
|   PRIVATE
 | |
|     # dawnglfw.c
 | |
|     # input.c
 | |
| )
 | |
| 
 | |
| # Subdirs
 | |
| add_subdirectory(error)
 | |
| add_subdirectory(host) |