mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 08:26:42 +00:00 
			
		
		
		
	for many record types. Improved DialInfo rule parsing. Discovered several issues involving the assignment of various flag bits.
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			483 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			483 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(ESMTOOL
 | |
|   esmtool.cpp
 | |
|   labels.hpp
 | |
|   labels.cpp
 | |
|   record.hpp
 | |
|   record.cpp
 | |
| )
 | |
| source_group(apps\\esmtool FILES ${ESMTOOL})
 | |
| 
 | |
| # Main executable
 | |
| add_executable(esmtool
 | |
|   ${ESMTOOL}
 | |
| )
 | |
| 
 | |
| target_link_libraries(esmtool
 | |
|   ${Boost_LIBRARIES}
 | |
|   components
 | |
| )
 | |
| 
 | |
| #if (APPLE)
 | |
| #    find_library(CARBON_FRAMEWORK Carbon)
 | |
| #    target_link_libraries(openmw ${CARBON_FRAMEWORK})
 | |
| #endif (APPLE)
 | |
| 
 | |
| if (BUILD_WITH_CODE_COVERAGE)
 | |
|   add_definitions (--coverage)
 | |
|   target_link_libraries(esmtool gcov)
 | |
| endif()
 |