Added documentation about using cmake to build an application using OpenMesh

This commit is contained in:
Jan Möbius
2023-02-28 13:40:30 +01:00
parent b4f94b7416
commit ef56d4090a
5 changed files with 39 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.25)
project(OpenMesh-Example)
find_package(OpenMesh)
set (targetName MyOwnProject)
add_executable (${targetName} build_cube.cc)
target_link_libraries(${targetName} PRIVATE OpenMeshCore OpenMeshTools)