Skip to content

Commit 6de940d

Browse files
committed
Adding cmake versions
1 parent e0d588a commit 6de940d

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

modules/cmake/3.6.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
help([[
2+
Prepares the path for CMake
3+
]])
4+
5+
local version = "3.6"
6+
7+
family('cmake')
8+
9+
whatis("Default cmake3")
10+
11+
12+

modules/cmake/3.7.lua

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
help([[
2+
Prepares the path for CMake
3+
]])
4+
5+
local version = "3.7.2"
6+
7+
family('cmake')
8+
9+
whatis("Prepares CMake " .. version)
10+
11+
local prefix = "/opt/cmake-" .. version
12+
13+
prepend_path("PATH", pathJoin(prefix, "/bin"))
14+
15+

modules/cmake/3.8.lua

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
help([[
2+
Prepares the path for CMake
3+
]])
4+
5+
local version = "3.8.0-rc2"
6+
7+
family('cmake')
8+
9+
whatis("Prepares CMake " .. version)
10+
11+
local prefix = "/opt/cmake-" .. version
12+
13+
prepend_path("PATH", pathJoin(prefix, "/bin"))
14+
15+

modules/cmake/default

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.7.lua

0 commit comments

Comments
 (0)