Skip to content
Snippets Groups Projects
Commit 9f2b8620 authored by callumprentice's avatar callumprentice
Browse files

Removed (unworking) code signing parameters from autobuild (wrong place)

Added them to correct place (Cmake config)
parent 3971f364
No related branches found
No related tags found
No related merge requests found
...@@ -2125,8 +2125,6 @@ ...@@ -2125,8 +2125,6 @@
<array> <array>
<string>-configuration Release</string> <string>-configuration Release</string>
<string>-project SecondLife.xcodeproj</string> <string>-project SecondLife.xcodeproj</string>
<string>-DENABLE_SIGNING:BOOL=YES</string>
<string>-DSIGNING_IDENTITY:STRING="Developer ID Application: Linden Research, Inc."</string>
</array> </array>
</map> </map>
<key>configure</key> <key>configure</key>
......
...@@ -206,6 +206,8 @@ if (DARWIN) ...@@ -206,6 +206,8 @@ if (DARWIN)
# NOTE: it's critical to have both CXX_FLAGS and C_FLAGS covered. # NOTE: it's critical to have both CXX_FLAGS and C_FLAGS covered.
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}") set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_C_FLAGS_RELWITHDEBINFO}") set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_C_FLAGS_RELWITHDEBINFO}")
set(ENABLE_SIGNING TRUE)
set(SIGNING_IDENTITY "Developer ID Application: Linden Research, Inc.")
endif (DARWIN) endif (DARWIN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment