1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Compile everything on emscripten with the same set of flags.

This commit is contained in:
Bartosz Taudul
2024-09-18 18:41:29 +02:00
parent 3bb6f1bb68
commit 0f0f2c6b9b
2 changed files with 4 additions and 1 deletions
+4
View File
@@ -33,6 +33,10 @@ else()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fdiagnostics-color=always")
endif()
if(EMSCRIPTEN)
add_compile_options(-sUSE_FREETYPE=1 -pthread -DIMGUI_IMPL_OPENGL_ES2)
endif()
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT EMSCRIPTEN)
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
endif()