aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LuaBridge/Tests/README.md
blob: 73df28deb287c11883cf914032d9047f78e2bfe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# LuaBridge Unit Tests

## Lunix and MacOS

Have CMake 3.5+ and a compiler supporting C++11 installed.

Run cmake to generate Makefiles:

```sh
mkdir build
cd build
cmake ..
```

Build the project:

```sh
make -j
```

Run tests from the `build` directory:

```sh
./Tests/LuaBridgeTests51
./Tests/LuaBridgeTests52
```

# Windows

Have CMake 3.5+ and MSVC 215 or 2017 installed.

Run cmake to generate MSVC solution and project files (run `cmake -G` to see all variants):

```cmd
mkdir build
cd build
# either
cmake -G Visual Studio 14 2015 ..
# or
cmake -G Visual Studio 15 2017 ..
```

Open the solution `LuaBridge.sln` in MSVC.

Set `LuaBridgeTests51` or `LuaBridgeTests52` as a startup project and run it.