回答編集履歴
3
修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
include_directories() に [ToruNiina/toml11: TOML for Modern C++](https://github.com/ToruNiina/toml11) からダウンロードした `toml11`
|
1
|
+
include_directories() に [ToruNiina/toml11: TOML for Modern C++](https://github.com/ToruNiina/toml11) からダウンロードした `toml11` ディレクトリのパスを指定すれば、`#include <toml.hpp>` で include できます。
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -14,15 +14,37 @@
|
|
14
14
|
|
15
15
|
```
|
16
16
|
|
17
|
-
|
17
|
+
│ CMakeLists.txt
|
18
18
|
|
19
19
|
├─src
|
20
20
|
|
21
21
|
│ └─main.cpp
|
22
22
|
|
23
|
-
|
23
|
+
└─toml11 ← git clone したディレクトリごと配置
|
24
24
|
|
25
|
+
│ .gitignore
|
26
|
+
|
27
|
+
│ .travis.yml
|
28
|
+
|
29
|
+
│ appveyor.yml
|
30
|
+
|
25
|
-
|
31
|
+
│ CMakeLists.txt
|
32
|
+
|
33
|
+
│ LICENSE
|
34
|
+
|
35
|
+
│ README.md
|
36
|
+
|
37
|
+
│ toml.hpp
|
38
|
+
|
39
|
+
├─.circleci
|
40
|
+
|
41
|
+
├─.github
|
42
|
+
|
43
|
+
├─cmake
|
44
|
+
|
45
|
+
├─tests
|
46
|
+
|
47
|
+
└─toml
|
26
48
|
|
27
49
|
```
|
28
50
|
|
2
修正
test
CHANGED
@@ -3,6 +3,12 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
## 例
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
toml11 を置いた場所に応じて適宜変更してください
|
10
|
+
|
11
|
+
include_directories() を相対パスで指定する場合は、基点となるディレクトリは CMakeLists.txt があるパスになります。
|
6
12
|
|
7
13
|
|
8
14
|
|
1
修正
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
│
|
18
18
|
|
19
|
-
└─toml11
|
19
|
+
└─toml11 ← ダウンロードしたフォルダごと置く
|
20
20
|
|
21
21
|
```
|
22
22
|
|