Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
5d671ff2
Commit
5d671ff2
authored
5 years ago
by
Brad Kittenbrink
Browse files
Options
Downloads
Patches
Plain Diff
Disabled broken automatic code signing for local development when using Xcode 11
parent
e2416706
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/cmake/Variables.cmake
+6
-2
6 additions, 2 deletions
indra/cmake/Variables.cmake
with
6 additions
and
2 deletions
indra/cmake/Variables.cmake
+
6
−
2
View file @
5d671ff2
...
@@ -186,12 +186,16 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
...
@@ -186,12 +186,16 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
list
(
GET LL_BUILD_LIST
"
${
sysroot_idx
}
"
CMAKE_OSX_SYSROOT
)
list
(
GET LL_BUILD_LIST
"
${
sysroot_idx
}
"
CMAKE_OSX_SYSROOT
)
message
(
STATUS
"CMAKE_OSX_SYSROOT = '
${
CMAKE_OSX_SYSROOT
}
'"
)
message
(
STATUS
"CMAKE_OSX_SYSROOT = '
${
CMAKE_OSX_SYSROOT
}
'"
)
set
(
XCODE_VERSION 7.0
)
set
(
CMAKE_XCODE_ATTRIBUTE_GCC_VERSION
"com.apple.compilers.llvm.clang.1_0"
)
set
(
CMAKE_XCODE_ATTRIBUTE_GCC_VERSION
"com.apple.compilers.llvm.clang.1_0"
)
set
(
CMAKE_XCODE_ATTRIBUTE_GCC_STRICT_ALIASING NO
)
set
(
CMAKE_XCODE_ATTRIBUTE_GCC_STRICT_ALIASING NO
)
set
(
CMAKE_XCODE_ATTRIBUTE_GCC_FAST_MATH NO
)
set
(
CMAKE_XCODE_ATTRIBUTE_GCC_FAST_MATH NO
)
set
(
CMAKE_XCODE_ATTRIBUTE_CLANG_X86_VECTOR_INSTRUCTIONS ssse3
)
set
(
CMAKE_XCODE_ATTRIBUTE_CLANG_X86_VECTOR_INSTRUCTIONS ssse3
)
# we must hard code this to off for now. xcode's built in signing does not
# handle embedded app bundles such as CEF and others. Any signing for local
# development must be done after the build as we do in viewer_manifest.py for
# released builds
# "-" represents "Sign to Run Locally" and empty string represents "Do Not Sign"
set
(
CMAKE_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY
""
)
set
(
CMAKE_OSX_ARCHITECTURES
"
${
ARCH
}
"
)
set
(
CMAKE_OSX_ARCHITECTURES
"
${
ARCH
}
"
)
string
(
REPLACE
"i686"
"i386"
CMAKE_OSX_ARCHITECTURES
"
${
CMAKE_OSX_ARCHITECTURES
}
"
)
string
(
REPLACE
"i686"
"i386"
CMAKE_OSX_ARCHITECTURES
"
${
CMAKE_OSX_ARCHITECTURES
}
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment