File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5050 uses : actions/upload-artifact@v4
5151 with :
5252 name : digraph-${{ matrix.preset }}-${GITHUB_REF_NAME}
53- path : build/conf-${{ matrix.preset }}/bin/*.exe
53+ path : build/conf-${{ matrix.preset }}/bin/*
5454
5555 create-release :
5656 name : Create Release
Original file line number Diff line number Diff line change @@ -9,9 +9,16 @@ set_target_properties(Digraph PROPERTIES
99)
1010
1111if (MSVC )
12- target_compile_options (Digraph PRIVATE "/arch:AVX2" )
12+ target_compile_options (Digraph PRIVATE "/arch:AVX2" "$<$<CONFIG :Release >:/Z7 >" )
13+ target_link_options (Digraph PRIVATE "$<$<CONFIG :Release >:/DEBUG :NONE >" )
1314else ()
14- target_compile_options (Digraph PRIVATE "-mavx2" "-mfma" )
15+ target_compile_options (Digraph PRIVATE "-mavx2" "-mfma" "$<$<CONFIG :Release >:-g0 >" )
16+
17+ if (APPLE )
18+ target_link_options (Digraph PRIVATE "$<$<CONFIG :Release >:-Wl ,-x >" )
19+ else ()
20+ target_link_options (Digraph PRIVATE "$<$<CONFIG :Release >:-s >" )
21+ endif ()
1522endif ()
1623
1724target_precompile_headers (Digraph
You can’t perform that action at this time.
0 commit comments