[Bf-blender-cvs] [0e5aa49e1d0] master: Cleanup: include missing header files in CMake

Campbell Barton noreply at git.blender.org
Mon Sep 7 15:14:47 CEST 2020


Commit: 0e5aa49e1d0edab553a3054b298a8c2f5ecaa16f
Author: Campbell Barton
Date:   Mon Sep 7 23:10:17 2020 +1000
Branches: master
https://developer.blender.org/rB0e5aa49e1d0edab553a3054b298a8c2f5ecaa16f

Cleanup: include missing header files in CMake

===================================================================

M	source/blender/CMakeLists.txt
M	source/blender/blenlib/CMakeLists.txt
M	source/blender/blenloader/CMakeLists.txt
M	source/blender/draw/CMakeLists.txt
M	source/blender/python/intern/CMakeLists.txt

===================================================================

diff --git a/source/blender/CMakeLists.txt b/source/blender/CMakeLists.txt
index e178b0f7935..d4f71c5b423 100644
--- a/source/blender/CMakeLists.txt
+++ b/source/blender/CMakeLists.txt
@@ -78,6 +78,7 @@ set(SRC_DNA_INC
   ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_screen_types.h
   ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_sdna_types.h
   ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_sequence_types.h
+  ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_session_uuid_types.h
   ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_shader_fx_types.h
   ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_simulation_types.h
   ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_sound_types.h
diff --git a/source/blender/blenlib/CMakeLists.txt b/source/blender/blenlib/CMakeLists.txt
index 1db45cff09a..a0569ad3dd4 100644
--- a/source/blender/blenlib/CMakeLists.txt
+++ b/source/blender/blenlib/CMakeLists.txt
@@ -243,6 +243,7 @@ set(SRC
   BLI_mesh_intersect.hh
   BLI_mpq2.hh
   BLI_mpq3.hh
+  BLI_multi_value_map.hh
   BLI_noise.h
   BLI_path_util.h
   BLI_polyfill_2d.h
diff --git a/source/blender/blenloader/CMakeLists.txt b/source/blender/blenloader/CMakeLists.txt
index f5c7223a37c..992870daeb4 100644
--- a/source/blender/blenloader/CMakeLists.txt
+++ b/source/blender/blenloader/CMakeLists.txt
@@ -103,6 +103,8 @@ if(WITH_GTESTS)
   set(TEST_SRC
     tests/blendfile_load_test.cc
     tests/blendfile_loading_base_test.cc
+
+    tests/blendfile_loading_base_test.h
   )
   set(TEST_INC
   )
diff --git a/source/blender/draw/CMakeLists.txt b/source/blender/draw/CMakeLists.txt
index 83d39b606fe..b299df50852 100644
--- a/source/blender/draw/CMakeLists.txt
+++ b/source/blender/draw/CMakeLists.txt
@@ -163,6 +163,7 @@ set(SRC
   intern/draw_instance_data.h
   intern/draw_manager.h
   intern/draw_manager_profiling.h
+  intern/draw_manager_testing.h
   intern/draw_manager_text.h
   intern/draw_view.h
   intern/smaa_textures.h
@@ -443,4 +444,4 @@ if(WITH_GTESTS)
     include(GTestTesting)
     blender_add_test_lib(bf_draw_tests "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}")
   endif()
-endif()
\ No newline at end of file
+endif()
diff --git a/source/blender/python/intern/CMakeLists.txt b/source/blender/python/intern/CMakeLists.txt
index b50aee73a13..6c3f422d3f0 100644
--- a/source/blender/python/intern/CMakeLists.txt
+++ b/source/blender/python/intern/CMakeLists.txt
@@ -123,6 +123,8 @@ set(SRC
   bpy_utils_units.h
   ../BPY_extern.h
   ../BPY_extern_clog.h
+  ../BPY_extern_python.h
+  ../BPY_extern_run.h
 )
 
 set(LIB



More information about the Bf-blender-cvs mailing list