Compare commits

...

2 Commits

Author SHA1 Message Date
0705580ce8 more ngcft improvement
Some checks failed
ContinuousDelivery / windows (push) Waiting to run
ContinuousDelivery / release (push) Blocked by required conditions
ContinuousIntegration / macos (push) Waiting to run
ContinuousIntegration / windows (push) Waiting to run
ContinuousDelivery / linux-ubuntu (push) Failing after 2m59s
ContinuousIntegration / linux (push) Successful in 2m35s
ContinuousIntegration / android (push) Failing after 4m32s
2024-07-15 14:57:46 +02:00
e83b75cdd8 optimize windows for size 2024-07-15 12:10:43 +02:00
2 changed files with 5 additions and 1 deletions

View File

@ -58,6 +58,10 @@ elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "MSVC")
else() else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
endif() endif()
# remove unreferenced objects, reducing binary and debugsymbol sizes
# does not work !!! (it actually slightly increased the file size by <1%)
# add_link_options("/OPT:REF")
endif() endif()
# cmake setup end # cmake setup end