Initial Commit
* A simple C-Make project setup * A lot of warnings enabled and warnings as errors * unit test discovery with google test In progress functionality - sanitizers - static analysis
This commit is contained in:
8
scripts/precompiled.cmake
Normal file
8
scripts/precompiled.cmake
Normal 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()
|
||||
Reference in New Issue
Block a user