star-stl

Load STereo Lithography (StL) file format
git clone git://git.meso-star.fr/star-stl.git
Log | Files | Refs | README | LICENSE

commit cf1142518c25dd8933c0a44826c96f4b7eac1a2c
parent d308ff5ffdfc3df5cc81a47848827988f84bc461
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 28 Apr 2016 17:14:01 +0200

Update the RCMake dependency to 0.2.2

Diffstat:
MREADME.md | 6+++---
Mcmake/CMakeLists.txt | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -7,9 +7,9 @@ supported. The library uses [CMake](http://www.cmake.org) and the [RCMake](https://gitlab.com/vaplv/rcmake/#tab-readme) package to build. It also -depends on the [RSys](https://gitlab.com/vaplv/rsys/#tab-readme) library. First, -install the RCMake package and the RSys library. Then, generate the project -from the cmake/CMakeLists.txt file by appending the RCMake lib/cmake and RSys +depends on the [RSys](https://gitlab.com/vaplv/rsys/#tab-readme) library. +First, install the RCMake package and the RSys library. Then, generate the +project from the cmake/CMakeLists.txt file by appending the RCMake and the RSys install directories to the `CMAKE_PREFIX_PATH` variable. The resulting project can be edited, built, tested and installed as any CMake project. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -37,7 +37,7 @@ set(SSTL_SOURCE_DIR ${PROJECT_SOURCE_DIR}/../src) ################################################################################ # Dependencies ################################################################################ -find_package(RCMake REQUIRED) +find_package(RCMake 0.2.2 REQUIRED) find_package(RSys 0.3 REQUIRED) include_directories(${RSys_INCLUDE_DIR})