Changeset View
Changeset View
Standalone View
Standalone View
source/blender/geometry/CMakeLists.txt
| Show All 10 Lines | set(INC | ||||
| ../makesrna | ../makesrna | ||||
| ../../../intern/eigen | ../../../intern/eigen | ||||
| ../../../intern/guardedalloc | ../../../intern/guardedalloc | ||||
| ${CMAKE_BINARY_DIR}/source/blender/makesdna/intern | ${CMAKE_BINARY_DIR}/source/blender/makesdna/intern | ||||
| ) | ) | ||||
| set(SRC | set(SRC | ||||
| intern/add_curves_on_mesh.cc | intern/add_curves_on_mesh.cc | ||||
| intern/constraint_solver.cc | |||||
| intern/fillet_curves.cc | intern/fillet_curves.cc | ||||
| intern/mesh_merge_by_distance.cc | intern/mesh_merge_by_distance.cc | ||||
| intern/mesh_primitive_cuboid.cc | intern/mesh_primitive_cuboid.cc | ||||
| intern/mesh_to_curve_convert.cc | intern/mesh_to_curve_convert.cc | ||||
| intern/mesh_to_volume.cc | intern/mesh_to_volume.cc | ||||
| intern/point_merge_by_distance.cc | intern/point_merge_by_distance.cc | ||||
| intern/realize_instances.cc | intern/realize_instances.cc | ||||
| intern/resample_curves.cc | intern/resample_curves.cc | ||||
| intern/reverse_uv_sampler.cc | intern/reverse_uv_sampler.cc | ||||
| intern/set_curve_type.cc | intern/set_curve_type.cc | ||||
| intern/subdivide_curves.cc | intern/subdivide_curves.cc | ||||
| intern/uv_parametrizer.c | intern/uv_parametrizer.c | ||||
| GEO_add_curves_on_mesh.hh | GEO_add_curves_on_mesh.hh | ||||
| GEO_constraint_solver.hh | |||||
| GEO_fillet_curves.hh | GEO_fillet_curves.hh | ||||
| GEO_mesh_merge_by_distance.hh | GEO_mesh_merge_by_distance.hh | ||||
| GEO_mesh_primitive_cuboid.hh | GEO_mesh_primitive_cuboid.hh | ||||
| GEO_mesh_to_curve.hh | GEO_mesh_to_curve.hh | ||||
| GEO_mesh_to_volume.hh | GEO_mesh_to_volume.hh | ||||
| GEO_point_merge_by_distance.hh | GEO_point_merge_by_distance.hh | ||||
| GEO_realize_instances.hh | GEO_realize_instances.hh | ||||
| GEO_resample_curves.hh | GEO_resample_curves.hh | ||||
| Show All 30 Lines | if(WITH_TBB) | ||||
| ) | ) | ||||
| list(APPEND LIB | list(APPEND LIB | ||||
| ${TBB_LIBRARIES} | ${TBB_LIBRARIES} | ||||
| ) | ) | ||||
| endif() | endif() | ||||
| blender_add_lib(bf_geometry "${SRC}" "${INC}" "${INC_SYS}" "${LIB}") | blender_add_lib(bf_geometry "${SRC}" "${INC}" "${INC_SYS}" "${LIB}") | ||||
| if(WITH_GTESTS) | |||||
| set(TEST_SRC | |||||
| tests/GEO_constraint_solver_test.cc | |||||
| ) | |||||
| set(TEST_INC | |||||
| ) | |||||
| set(TEST_LIB | |||||
| bf_geometry | |||||
| ) | |||||
| include(GTestTesting) | |||||
| blender_add_test_executable(geometry "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}") | |||||
| add_subdirectory(tests/performance) | |||||
| endif() | |||||