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.

ビルドとコンパイルについて動作確認

Last updated at Posted at 2022-11-22

コンパイルとは

プログラム言語で書かれたソースコードをコンピュータが理解できる「機械語」に翻訳すること。
翻訳するプログラムのことをコンパイラと呼ぶ。
変換のみを行う。生成したオブジェクトコードの実行は行わない。実行可能なファイルに変換すること。

ビルドとは

全てのファイルのソースコードのコンパイルやライブラリのリンクなどを行い、最終的な実行可能ファイルを作成すること。
コンパイル+使っているライブラリに関連づけ(リンク)をする。

言葉で言っても堅苦しいので作業で覚えた方が早いかも。スクリーンショット 2022-11-22 15.04.59.png

Unityより
Fille > Build Settings… > Scenes In BuildへScenesを入れる > Add Open Scenesクリック > Build And Run
これでビルドは終了です。

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?