1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,18 @@ |
1 |
+## CMake |
|
2 |
+cmake_minimum_required(VERSION 3.14) |
|
3 |
+if(NOT CMAKE_BUILD_TYPE) |
|
4 |
+ set(CMAKE_BUILD_TYPE Debug) |
|
5 |
+endif() |
|
6 |
+ |
|
7 |
+## Project |
|
8 |
+project(glhashnoise |
|
9 |
+ VERSION 1.0.0 |
|
10 |
+ LANGUAGES |
|
11 |
+) |
|
12 |
+ |
|
13 |
+## Main target |
|
14 |
+add_custom_target(${PROJECT_NAME}) |
|
15 |
+ |
|
16 |
+## C++ |
|
17 |
+include(cxx.cmake) |
|
18 |
+cxx() |