Commit 36e54790b4f77fe93270394767f181c22a4c5e16
1 parent
d76529ab
Include headers in cmake file
For better IDE functionality, mostly.
Showing
1 changed file
with
26 additions
and
0 deletions
CMakeLists.txt
| ... | ... | @@ -12,6 +12,32 @@ SET(CMAKE_CXX_FLAGS "-rdynamic") |
| 12 | 12 | add_compile_options(-Wall) |
| 13 | 13 | |
| 14 | 14 | add_executable(FlashMQ |
| 15 | + mainapp.h | |
| 16 | + utils.h | |
| 17 | + threaddata.h | |
| 18 | + client.h | |
| 19 | + session.h | |
| 20 | + mqttpacket.h | |
| 21 | + exceptions.h | |
| 22 | + types.h | |
| 23 | + subscriptionstore.h | |
| 24 | + rwlockguard.h | |
| 25 | + retainedmessage.h | |
| 26 | + cirbuf.h | |
| 27 | + logger.h | |
| 28 | + authplugin.h | |
| 29 | + configfileparser.h | |
| 30 | + sslctxmanager.h | |
| 31 | + timer.h | |
| 32 | + iowrapper.h | |
| 33 | + mosquittoauthoptcompatwrap.h | |
| 34 | + settings.h | |
| 35 | + listener.h | |
| 36 | + unscopedlock.h | |
| 37 | + scopedsocket.h | |
| 38 | + bindaddr.h | |
| 39 | + oneinstancelock.h | |
| 40 | + | |
| 15 | 41 | mainapp.cpp |
| 16 | 42 | main.cpp |
| 17 | 43 | utils.cpp | ... | ... |