This adds solution folders that properly group gtest/glslang/hlsl. This also marks gtest options as advanced so they don't show up in cmake-gui by default.
		
			
				
	
	
		
			12 lines
		
	
	
		
			279 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			279 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set(SOURCES InitializeDll.cpp InitializeDll.h)
 | 
						|
 | 
						|
add_library(OGLCompiler STATIC ${SOURCES})
 | 
						|
set_property(TARGET OGLCompiler PROPERTY FOLDER glslang)
 | 
						|
 | 
						|
if(WIN32)
 | 
						|
    source_group("Source" FILES ${SOURCES})
 | 
						|
endif(WIN32)
 | 
						|
 | 
						|
install(TARGETS OGLCompiler 
 | 
						|
        ARCHIVE DESTINATION lib)
 |