Skip to content
Snippets Groups Projects
Verified Commit 9154cc28 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#101] Fix for MSVC

parent 8f0e83dc
No related branches found
No related tags found
No related merge requests found
Pipeline #26594 failed
......@@ -65,7 +65,7 @@ add_library(vkcv STATIC ${vkcv_sources})
if(MSVC)
#enable multicore compilation on visual studio
target_compile_options(vkcv PRIVATE "/MP" "/openmp")
target_compile_options(vkcv PRIVATE "/MP" "/openmp" "/Zc:offsetof")
#set source groups to create proper filters in visual studio
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${vkcv_sources})
......
#include "vkcv/FeatureManager.hpp"
#include <stddef.h>
#include <string.h>
namespace vkcv {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment