cmake was missing some header files.
This commit is contained in:
3
extern/libmv/CMakeLists.txt
vendored
3
extern/libmv/CMakeLists.txt
vendored
@@ -102,6 +102,8 @@ set(SRC
|
||||
libmv/multiview/conditioning.h
|
||||
libmv/multiview/euclidean_resection.h
|
||||
libmv/multiview/fundamental.h
|
||||
libmv/multiview/homography.h
|
||||
libmv/multiview/homography_parameterization.h
|
||||
libmv/multiview/nviewtriangulation.h
|
||||
libmv/multiview/projection.h
|
||||
libmv/multiview/resection.h
|
||||
@@ -131,6 +133,7 @@ set(SRC
|
||||
libmv/tracking/pyramid_region_tracker.h
|
||||
libmv/tracking/region_tracker.h
|
||||
libmv/tracking/retrack_region_tracker.h
|
||||
libmv/tracking/track_region.h
|
||||
libmv/tracking/trklt_region_tracker.h
|
||||
|
||||
third_party/fast/fast.h
|
||||
|
@@ -54,6 +54,7 @@ set(SRC_HEADERS
|
||||
util_path.h
|
||||
util_progress.h
|
||||
util_set.h
|
||||
util_stats.h
|
||||
util_string.h
|
||||
util_system.h
|
||||
util_task.h
|
||||
@@ -61,8 +62,8 @@ set(SRC_HEADERS
|
||||
util_time.h
|
||||
util_transform.h
|
||||
util_types.h
|
||||
util_view.h
|
||||
util_vector.h
|
||||
util_view.h
|
||||
util_xml.h
|
||||
)
|
||||
|
||||
|
@@ -32,6 +32,8 @@ set(INC_SYS
|
||||
|
||||
set(SRC
|
||||
boost_locale_wrapper.cpp
|
||||
|
||||
boost_locale_wrapper.h
|
||||
)
|
||||
|
||||
if(WITH_INTERNATIONAL)
|
||||
|
@@ -255,13 +255,13 @@ if(WITH_BULLET)
|
||||
add_definitions(-DUSE_BULLET)
|
||||
endif()
|
||||
|
||||
if(WITH_MOD_CLOTH_ELTOPO)
|
||||
list(APPEND INC
|
||||
../../../extern/eltopo
|
||||
../../../extern/eltopo/eltopo3d
|
||||
)
|
||||
add_definitions(-DWITH_ELTOPO)
|
||||
endif()
|
||||
#if(WITH_MOD_CLOTH_ELTOPO)
|
||||
# list(APPEND INC
|
||||
# ../../../extern/eltopo
|
||||
# ../../../extern/eltopo/eltopo3d
|
||||
# )
|
||||
# add_definitions(-DWITH_ELTOPO)
|
||||
#endif()
|
||||
|
||||
if(WITH_IMAGE_OPENEXR)
|
||||
add_definitions(-DWITH_OPENEXR)
|
||||
|
@@ -84,15 +84,9 @@
|
||||
#include "BKE_movieclip.h"
|
||||
|
||||
#ifdef WITH_PYTHON
|
||||
#include "BPY_extern.h"
|
||||
# include "BPY_extern.h"
|
||||
#endif
|
||||
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.14159265358979323846
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/* ************************ Constraints - General Utilities *************************** */
|
||||
/* These functions here don't act on any specific constraints, and are therefore should/will
|
||||
* not require any of the special function-pointers afforded by the relevant constraint
|
||||
|
@@ -128,6 +128,7 @@ set(SRC
|
||||
BLI_math_color.h
|
||||
BLI_math_geom.h
|
||||
BLI_math_inline.h
|
||||
BLI_math_interp.h
|
||||
BLI_math_matrix.h
|
||||
BLI_math_rotation.h
|
||||
BLI_math_vector.h
|
||||
|
@@ -643,8 +643,8 @@ int ED_object_parent_set(ReportList *reports, Main *bmain, Scene *scene, Object
|
||||
|
||||
/* apply transformation of previous parenting */
|
||||
if (keep_transform) {
|
||||
/* was removed because of bug [#23577],
|
||||
* but this can be handy in some cases too [#32616], so make optional */
|
||||
/* was removed because of bug [#23577],
|
||||
* but this can be handy in some cases too [#32616], so make optional */
|
||||
BKE_object_apply_mat4(ob, ob->obmat, FALSE, FALSE);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user