Reshuffle folder structure

Reshuffle folder structure and update cmake.yml
This commit is contained in:
McMassiveNZ
2022-12-16 23:10:43 +01:00
parent 97a801e4a6
commit bb6eb1b24f
10 changed files with 17 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
include_guard()
function( target_precompiled_header _target _header _source )
if( MSVC )
set_target_properties( ${_target} PROPERTIES COMPILE_FLAGS "/Yu${_header}" )
set_source_files_properties( ${_source} PROPERTIES COMPILE_FLAGS "/Yc${_header}" )
endif()
endfunction()