Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.

Commit 55d1273

Browse files
author
kapec
committed
Added CMake build scripts for LuaDist; updated release notes
1 parent dbb9c3e commit 55d1273

File tree

5 files changed

+501
-1
lines changed

5 files changed

+501
-1
lines changed

CMakeLists.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright (C) 2007-2011 LuaDist.
2+
# Created by Peter Drahoš
3+
# Redistribution and use of this file is allowed according to the terms of the MIT license.
4+
# For details see the COPYRIGHT file distributed with LuaDist.
5+
# Please note that the package source code is licensed under its own license.
6+
7+
project ( leg NONE )
8+
cmake_minimum_required ( VERSION 2.6 )
9+
include ( dist.cmake )
10+
11+
install_lua_module ( leg src/init.lua )
12+
install_lua_module ( leg.grammar src/grammar.lua )
13+
install_lua_module ( leg.parser src/parser.lua )
14+
install_data ( README COPYRIGHT release )
15+
install_doc ( doc/ )
16+
install_test ( tests/ )
17+
install_example ( examples/ )
18+
19+
#FIX: paths: add_lua_test ( tests/test.lua )

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Leg 0.1.2
1+
Leg 0.2
22
=========
33

44
This is a release of Leg, a Lua library exporting a complete Lua 5.1 grammar

0 commit comments

Comments
 (0)