mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
code: move code units to src/
This commit is contained in:
parent
d76ff16162
commit
6a323b9371
@ -17,22 +17,22 @@ add_subdirectory(deps/mbedtls EXCLUDE_FROM_ALL)
|
|||||||
set(ENABLE_PROGRAMS false)
|
set(ENABLE_PROGRAMS false)
|
||||||
|
|
||||||
set(obs-websocket_SOURCES
|
set(obs-websocket_SOURCES
|
||||||
obs-websocket.cpp
|
src/obs-websocket.cpp
|
||||||
WSServer.cpp
|
src/WSServer.cpp
|
||||||
WSRequestHandler.cpp
|
src/WSRequestHandler.cpp
|
||||||
WSEvents.cpp
|
src/WSEvents.cpp
|
||||||
Config.cpp
|
src/Config.cpp
|
||||||
Utils.cpp
|
src/Utils.cpp
|
||||||
forms/settings-dialog.cpp)
|
src/forms/settings-dialog.cpp)
|
||||||
|
|
||||||
set(obs-websocket_HEADERS
|
set(obs-websocket_HEADERS
|
||||||
obs-websocket.h
|
src/obs-websocket.h
|
||||||
WSServer.h
|
src/WSServer.h
|
||||||
WSRequestHandler.h
|
src/WSRequestHandler.h
|
||||||
WSEvents.h
|
src/WSEvents.h
|
||||||
Config.h
|
src/Config.h
|
||||||
Utils.h
|
src/Utils.h
|
||||||
forms/settings-dialog.h)
|
src/forms/settings-dialog.h)
|
||||||
|
|
||||||
# --- Platform-independent build settings ---
|
# --- Platform-independent build settings ---
|
||||||
add_library(obs-websocket MODULE
|
add_library(obs-websocket MODULE
|
||||||
|
@ -18,9 +18,9 @@ with this program. If not, see <https://www.gnu.org/licenses/>
|
|||||||
|
|
||||||
#include <obs-frontend-api.h>
|
#include <obs-frontend-api.h>
|
||||||
|
|
||||||
#include "obs-websocket.h"
|
#include "../obs-websocket.h"
|
||||||
#include "Config.h"
|
#include "../Config.h"
|
||||||
#include "WSServer.h"
|
#include "../WSServer.h"
|
||||||
#include "settings-dialog.h"
|
#include "settings-dialog.h"
|
||||||
#include "ui_settings-dialog.h"
|
#include "ui_settings-dialog.h"
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user