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.
6 lines
180 B
CMake
6 lines
180 B
CMake
add_library(OSDependent STATIC ossource.cpp ../osinclude.h)
|
|
set_property(TARGET OSDependent PROPERTY FOLDER glslang)
|
|
|
|
install(TARGETS OSDependent
|
|
ARCHIVE DESTINATION lib)
|