commit 08ac4673a2335844c3b6a412ee5bf8ab3e6c3798 parent 0ba38f6c41404ef1792c8d5adbf5c7d6d5b2df58 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Wed, 29 Jun 2016 14:40:26 +0200 Fix typos in the README file Diffstat:
| M | README.md | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md @@ -75,19 +75,19 @@ Star-2D package to build an executable relying on the Star-2D library. project(my_project C) - # Use the Star-3D CMake package - find_package(Star3D REQUIRED) + # Use the Star-2D CMake package + find_package(Star2D REQUIRED) # Define the program to build add_executable(my_program main.c) - # Link the program against Star-3D - target_link_libraries(my_program Star3D) + # Link the program against Star-2D + target_link_libraries(my_program Star2D) This `CMakeLists.txt` is then used to generate the target project as, for instance, on a GNU/Linux system: - cmake -G "Unix Makefiles" -DCMAKE_PREFIX_PATH="<STAR3D_INSTALL_DIR>" <MY_PROJECT_DIR> + cmake -G "Unix Makefiles" -DCMAKE_PREFIX_PATH="<STAR2D_INSTALL_DIR>" <MY_PROJECT_DIR> with `<STAR2D_INSTALL_DIR>` the install directory of Star-2D and `<MY_PROJECT_DIR>` the location of the `CMakeLists.txt` file.