0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[openFrameworks] macOSでビルドするたびにカメラ利用の許可とかを聞かれないために

Last updated at Posted at 2023-07-19

わずらわしいですよね. あれ. 表題の件.

で, 解決策は Signing & Capabilities で Signing をきちんと指定してあげるだけ.
なんですが, oFだとPG使いますよね. PG使うとそこらへんの設定吹き飛んじゃいますよね.

ということでちょっと一手間加えてレトルト食品を美味しく変身させちゃおうっていう.


scripts/templates/osx/Project.xcconfig の最後に

// #include? "./UserDefined.xcconfig"
#include? "./App.xcconfig"

を追加. ファイル名は好きなものに変えても良いです.

で, プロジェクトディレクトリに UserDefined.xcconfig App.xcconfig を作成して次のような内容を記入.

CODE_SIGN_STYLE = Automatic
DEVELOPMENT_TEAM = XXXXXXXXXX
CODE_SIGN_IDENTITY = Apple Development

DEVELOPMENT_TEAMhttps://developer.apple.com/account#MembershipDetailsCard 辺りで確認してください.

以上.


追記:
UserDefined.xcconfig という名称で書きましたが次期バージョンからは同じ意味のファイルとして App.xcconfig がデフォルトで追加されます.
ので, 今から App.xcconfig にしておくと幸せになれそうですね.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?