File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed
Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 11# Level zero loader changelog
2+ ## v1.24.2
3+ * Fix scorecard CI
4+ * Add build instructions for windows
5+ * Check if compile flags are supported: /GL, /QSpectre, /guard: cf
26## v1.24.1
37* Changes to get ze_loader loaded for Android
48## v1.24.0
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if(MSVC AND (MSVC_VERSION LESS 1900))
1313endif ()
1414
1515# This project follows semantic versioning (https://semver.org/)
16- project (level-zero VERSION 1.24.1 )
16+ project (level-zero VERSION 1.24.2 )
1717
1818include (GNUInstallDirs)
1919
@@ -98,10 +98,10 @@ include(CheckCXXCompilerFlag)
9898function (add_cxx_flag_if_supported flag)
9999 mangle_name("${flag} " flagname)
100100 check_cxx_compiler_flag("${flag} " "CXX_SUPPORTS_${flagname} _FLAG" )
101- if (CXX_SUPPORTS_${flagname} _FLAG)
102- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag} " )
103- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag} " )
104- endif ()
101+ if (CXX_SUPPORTS_${flagname} _FLAG)
102+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag} " PARENT_SCOPE )
103+ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag} " PARENT_SCOPE )
104+ endif ()
105105endfunction ()
106106
107107if (MSVC )
Original file line number Diff line number Diff line change 1- 1.24.1
2- f99c0560-281a-4879-9cc6-e68e3bdf7533
1+ 1.24.2
2+ bd6c40ee-9afb-4a30-9d25-4c9d6abd0dda
You can’t perform that action at this time.
0 commit comments