Browse code

Add implementation

Robert Cranston authored on 15/03/2021 19:32:43
Showing 1 changed files
... ...
@@ -9,3 +9,21 @@ project(gltest
9 9
     VERSION 1.0.0
10 10
     LANGUAGES CXX
11 11
 )
12
+
13
+## Main target
14
+add_library(${PROJECT_NAME})
15
+
16
+## Common
17
+include(common.cmake)
18
+common(
19
+    CXX_STANDARD 11
20
+    FETCHCONTENT
21
+        https://git.rcrnstn.net/rcrnstn/glbase
22
+        https://git.rcrnstn.net/rcrnstn/glbackend
23
+    DEPENDENCIES_PRIVATE
24
+        glbase
25
+        glbackend
26
+    DEPENDENCIES_TESTS
27
+        glbase
28
+        glbackend
29
+)
Browse code

Add project

Robert Cranston authored on 15/03/2021 19:32:33
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,11 @@
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(gltest
9
+    VERSION 1.0.0
10
+    LANGUAGES CXX
11
+)