File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,8 +69,6 @@ function(add_module_library name)
69
69
target_compile_options (${name} PUBLIC -fmodules-ts)
70
70
endif ()
71
71
72
- target_compile_definitions (${name} PRIVATE FMT_MODULE)
73
-
74
72
if (FMT_USE_CMAKE_MODULES)
75
73
target_sources (${name} PUBLIC FILE_SET fmt TYPE CXX_MODULES
76
74
FILES ${sources} )
Original file line number Diff line number Diff line change 299
299
300
300
// Enable minimal optimizations for more compact code in debug mode.
301
301
FMT_PRAGMA_GCC (push_options)
302
- #if !defined(__OPTIMIZE__) && !defined(__CUDACC__)
302
+ #if !defined(__OPTIMIZE__) && !defined(__CUDACC__) && !defined(FMT_MODULE)
303
303
FMT_PRAGMA_GCC (optimize(" Og" ))
304
304
#endif
305
305
FMT_PRAGMA_CLANG (diagnostic push)
Original file line number Diff line number Diff line change 1
1
module;
2
2
3
+ #define FMT_MODULE
4
+
3
5
#ifdef _MSVC_LANG
4
6
# define FMT_CPLUSPLUS _MSVC_LANG
5
7
#else
You can’t perform that action at this time.
0 commit comments