We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38478e3 commit 84d7b34Copy full SHA for 84d7b34
packages/react-native/ReactCommon/jsinspector-modern/CMakeLists.txt
@@ -28,6 +28,9 @@ target_link_libraries(jsinspector
28
)
29
target_compile_reactnative_options(jsinspector PRIVATE)
30
target_compile_options(jsinspector PRIVATE
31
- $<$<CONFIG:Debug>:-DREACT_NATIVE_DEBUGGER_ENABLED=1>
32
- $<$<CONFIG:Debug>:-DREACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=1>
+ # Expo Go requires debugging on release builds
+ -DREACT_NATIVE_DEBUGGER_ENABLED=1
33
+ -DREACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=1
34
+ # $<$<CONFIG:Debug>:-DREACT_NATIVE_DEBUGGER_ENABLED=1>
35
+ # $<$<CONFIG:Debug>:-DREACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=1>
36
0 commit comments