8
4

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 5 years have passed since last update.

Macにcmakeをインストール方法

Posted at

#Macにcmakeをインストールしたい

##手順
 1.下記から自分のPCにあったバージョンのcmakeインストーラーをダウンロード。
https://cmake.org/download/

 2.ダウンロード完了後cmake起動。ここでアプリケーションを確認するとちゃんと表示されている。

 3.PATHの設定を行う。

PATHの設定内容を確認できる

export -p 

PATHへの追加方法

export PATH=$PATH:追加したいコマンド検索パス

再度こちらを実行し、上記の検索パスが追加されていることを確認

export -p 

(参考URL)
https://qiita.com/soarflat/items/d5015bec37f8a8254380

4.完了!

※全体的に参考にさせてもらったページがこちら。
https://qiita.com/tenmihi/items/09e1e6b273d8db51f4a1

8
4
1

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
8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?