Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-04-24 18:00:19 +0300
committerJacques Lucke <jacques@blender.org>2021-04-24 18:00:37 +0300
commit9cce18a5858cb93da626f5f0fd7e09cd66637e05 (patch)
treef8f14810168405e984c263e05381e77afac869ef /source/blender/editors/space_info/CMakeLists.txt
parent82328797cfcb5bbe543e4eeec4623504bfd9ff0c (diff)
Info Editor: move to c++
I'm currently doing some experiments in the info editor and for that it is easier if the info editor is in c++ already.
Diffstat (limited to 'source/blender/editors/space_info/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_info/CMakeLists.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/editors/space_info/CMakeLists.txt b/source/blender/editors/space_info/CMakeLists.txt
index b6df07eec4e..15194082376 100644
--- a/source/blender/editors/space_info/CMakeLists.txt
+++ b/source/blender/editors/space_info/CMakeLists.txt
@@ -34,14 +34,14 @@ set(INC
)
set(SRC
- info_draw.c
- info_ops.c
- info_report.c
- info_stats.c
- space_info.c
- textview.c
+ info_draw.cc
+ info_ops.cc
+ info_report.cc
+ info_stats.cc
+ space_info.cc
+ textview.cc
- info_intern.h
+ info_intern.hh
textview.h
)