4
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でC++環境構築

Last updated at Posted at 2016-07-25

0.まえおき

この記事はある種メモ書きなので、あーこうやるんだー程度に…

1.手順

手順は以下のとおり

0.前提

brewとXcodeが入っていること。

1.gcc-6のインストール

$brew install gcc

2.CMakeインストール

3.CMakeをCommandLineで使えるようにする

sudo "/Applications/CMake.app/Contents/bin/cmake-gui" --install

4.IDEを取ってくる

30日はただ
https://www.jetbrains.com/clion/

5.実際に実行してみる

$ cd {C++プロジェクトの適当なフォルダ}
$ cmake .
$ make
$ ./{app_name}
4
4
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
4
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?