Skip to content

Commit c96edec

Browse files
authored
chore: Added missing sources files in CMake (dashpay#5503)
## Issue being fixed or feature implemented Added missing sources files (index, interfaces, node, logging, util) in CMake so they can be indexed by IDE. ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
1 parent 00cb31c commit c96edec

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CMakeLists.txt

+18
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ add_definitions(
4949
-DENABLE_WALLET=1
5050
)
5151

52+
# find src/ -name '*.h' -or -name '*.cpp' | sed -r 's/[^/]*.(h|cpp)$/*.\1/' | sort | uniq | grep -Ev "/(bench/data|obj)/" > list.txt
53+
5254
file(GLOB SOURCE_FILES
5355
src/*.cpp
5456
src/*.h
@@ -69,13 +71,20 @@ file(GLOB SOURCE_FILES
6971
src/evo/*.h
7072
src/governance/*.cpp
7173
src/governance/*.h
74+
src/index/*.cpp
75+
src/index/*.h
76+
src/interfaces/*.cpp
77+
src/interfaces/*.h
7278
src/leveldb/db/*.cc
7379
src/leveldb/db/*.h
7480
src/leveldb/include/*.h
7581
src/llmq/*.cpp
7682
src/llmq/*.h
83+
src/logging/*.h
7784
src/masternode/*.cpp
7885
src/masternode/*.h
86+
src/node/*.cpp
87+
src/node/*.h
7988
src/policy/*.cpp
8089
src/policy/*.h
8190
src/primitives/*.cpp
@@ -89,11 +98,20 @@ file(GLOB SOURCE_FILES
8998
src/script/*.cpp
9099
src/script/*.h
91100
src/secp256k1/include/*.h
101+
src/support/allocators/*.h
102+
src/support/*.cpp
103+
src/support/*.h
92104
src/test/*.cpp
93105
src/test/*.h
106+
src/test/fuzz/*.cpp
107+
src/test/fuzz/*.h
108+
src/test/util/*.cpp
109+
src/test/util/*.h
94110
src/univalue/include/*.h
95111
src/univalue/lib/*.cpp
96112
src/univalue/lib/*.h
113+
src/util/*.h
114+
src/util/*.cpp
97115
src/wallet/*.cpp
98116
src/wallet/*.h
99117
src/wallet/test/*.cpp

0 commit comments

Comments
 (0)