diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-28 00:57:57 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-28 00:57:57 -0400 |
commit | 85fb2bff38b2ef6cb17e86c5f602ee09a365b117 (patch) | |
tree | a8066d33233ec9b6a2b9bb281a1de040ab96be7b /lib/LuaBridge/Tests/README.md | |
parent | 787393dd86d6c37b5680847dd4eef14406a86687 (diff) |
Added LuaBridge support
Diffstat (limited to 'lib/LuaBridge/Tests/README.md')
-rw-r--r-- | lib/LuaBridge/Tests/README.md | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/lib/LuaBridge/Tests/README.md b/lib/LuaBridge/Tests/README.md new file mode 100644 index 0000000..73df28d --- /dev/null +++ b/lib/LuaBridge/Tests/README.md @@ -0,0 +1,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. |