New upstream version 25.0.3+dfsg1
This commit is contained in:
parent
04fe0efc67
commit
8b2e5f2130
569 changed files with 62491 additions and 5875 deletions
5
deps/obs-scripting/obslua/CMakeLists.txt
vendored
5
deps/obs-scripting/obslua/CMakeLists.txt
vendored
|
|
@ -2,8 +2,13 @@ cmake_minimum_required(VERSION 2.8)
|
|||
project(obslua)
|
||||
|
||||
if(POLICY CMP0078)
|
||||
# UseSWIG generates standard target names.
|
||||
cmake_policy(SET CMP0078 OLD)
|
||||
endif()
|
||||
if(POLICY CMP0086)
|
||||
# UseSWIG honors SWIG_MODULE_NAME via -module flag.
|
||||
cmake_policy(SET CMP0086 OLD)
|
||||
endif()
|
||||
|
||||
find_package(SWIG 2 REQUIRED)
|
||||
include(${SWIG_USE_FILE})
|
||||
|
|
|
|||
4
deps/obs-scripting/obslua/obslua.i
vendored
4
deps/obs-scripting/obslua/obslua.i
vendored
|
|
@ -7,6 +7,8 @@
|
|||
#include <graphics/vec4.h>
|
||||
#include <graphics/vec3.h>
|
||||
#include <graphics/vec2.h>
|
||||
#include <graphics/matrix4.h>
|
||||
#include <graphics/matrix3.h>
|
||||
#include <graphics/quat.h>
|
||||
#include <graphics/image-file.h>
|
||||
#include <obs.h>
|
||||
|
|
@ -82,6 +84,8 @@ static inline void wrap_blog(int log_level, const char *message)
|
|||
%include "graphics/vec4.h"
|
||||
%include "graphics/vec3.h"
|
||||
%include "graphics/vec2.h"
|
||||
%include "graphics/matrix4.h"
|
||||
%include "graphics/matrix3.h"
|
||||
%include "graphics/quat.h"
|
||||
%include "graphics/image-file.h"
|
||||
%include "obs-scripting-config.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue