-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from cgogn/develop
Develop
- Loading branch information
Showing
471 changed files
with
196,126 additions
and
19,469 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
cmake_minimum_required(VERSION 3.0 FATAL_ERROR) | ||
|
||
project(bench_attrib | ||
LANGUAGES CXX | ||
) | ||
|
||
find_package(cgogn_core REQUIRED) | ||
find_package(cgogn_geometry REQUIRED) | ||
find_package(cgogn_modeling REQUIRED) | ||
|
||
set(CMAKE_AUTOMOC ON) | ||
|
||
add_executable(${PROJECT_NAME} bench_attrib.cpp) | ||
target_link_libraries(${PROJECT_NAME} ${cgogn_core_LIBRARIES} ${cgogn_modeling_LIBRARIES} ) | ||
|
||
set_target_properties(${PROJECT_NAME} PROPERTIES FOLDER benchmarks) |
Oops, something went wrong.