mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
⚠ BROKEN: No more single inside!!!
- Generate it if you want it!!
This commit is contained in:
parent
5fed8e48d5
commit
e4658e3545
205
.travis.yml
205
.travis.yml
|
@ -1,205 +0,0 @@
|
|||
# # # # sol2
|
||||
# The MIT License (MIT)
|
||||
#
|
||||
# Copyright (c) 2013-2021 Rapptz, ThePhD, and contributors
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
# this software and associated documentation files (the "Software"), to deal in
|
||||
# the Software without restriction, including without limitation the rights to
|
||||
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
# the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
# subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in all
|
||||
# copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
sudo: required
|
||||
language: cpp
|
||||
|
||||
git:
|
||||
depth: 2
|
||||
|
||||
services:
|
||||
- docker
|
||||
|
||||
before_install:
|
||||
- sudo apt install -y git
|
||||
|
||||
script:
|
||||
- export SOL2_DIR=${TRAVIS_BUILD_DIR}
|
||||
- sudo docker image pull thephd/sol2:gcc-${GCC_VERSION}_llvm-${LLVM_VERSION}
|
||||
- sudo docker run --rm --interactive --tty --name "sol2.test" -v "${SOL2_DIR}:/root/sol2" --env "SOL2_CI=${SOL2_CI}" --env "SOL2_PLATFORM=${SOL2_PLATFORM}" --env "SOL2_LUA_VERSION=${SOL2_LUA_VERSION}" --env "SOL2_TEST_SINGLE=${SOL2_TEST_SINGLE}" --env "SOL2_TEST_INTEROP=${SOL2_TEST_INTEROP}" --env "GCC_VERSION=${GCC_VERSION}" --env "LLVM_VERSION=${LLVM_VERSION}" thephd/sol2:gcc-${GCC_VERSION}_llvm-${LLVM_VERSION}
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
allow_failures:
|
||||
- os: osx
|
||||
|
||||
include:
|
||||
# LLVM 5.0.x -> 8.0.x
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
LLVM_VERSION=5.0.2
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
LLVM_VERSION=6.0.1
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
LLVM_VERSION=7.0.1
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
LLVM_VERSION=8.0.0
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
# GCC 7.x, 8.x
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
GCC_VERSION=7
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
# Lua Versions 5.4.0-beta, 5.2.4, 5.1.5, and LuaJIT
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.1.5
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.2.4
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.4.0-beta
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=luajit-2.0.4
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=luajit-2.0.5
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
# x86 builds
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=i686
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=luajit-2.0.5
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=i686
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=luajit-2.1.0-beta3
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=i686
|
||||
SOL2_CI=true
|
||||
|
||||
# Test Single, Interop, Etc.
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
SOL2_TEST_SINGLE=true
|
||||
SOL2_TEST_INTEROP=true
|
||||
LLVM_VERSION=8.0.0
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- env:
|
||||
- SOL2_LUA_VERSION=5.3.5
|
||||
SOL2_TEST_SINGLE=true
|
||||
SOL2_TEST_INTEROP=true
|
||||
GCC_VERSION=8
|
||||
SOL2_PLATFORM=x64
|
||||
SOL2_CI=true
|
||||
|
||||
- os: osx
|
||||
osx_image: xcode10.1
|
||||
env:
|
||||
- SOL2_LUA_VERSION=lua-5.3.5
|
||||
before_install:
|
||||
- chmod +x ./scripts/run.osx.sh
|
||||
- chmod +x ./scripts/preparation.osx.sh
|
||||
- ./scripts/preparation.osx.sh
|
||||
script:
|
||||
- ./scripts/run.osx.sh
|
||||
|
||||
- os: osx
|
||||
osx_image: xcode9.4
|
||||
env:
|
||||
- SOL2_LUA_VERSION=lua-5.3.5
|
||||
before_install:
|
||||
- chmod +x ./scripts/run.osx.sh
|
||||
- chmod +x ./scripts/preparation.osx.sh
|
||||
- ./scripts/preparation.osx.sh
|
||||
script:
|
||||
- ./scripts/run.osx.sh
|
||||
|
||||
- os: osx
|
||||
osx_image: xcode9.3
|
||||
env:
|
||||
- SOL2_LUA_VERSION=lua-5.3.5
|
||||
before_install:
|
||||
- chmod +x ./scripts/run.osx.sh
|
||||
- chmod +x ./scripts/preparation.osx.sh
|
||||
- ./scripts/preparation.osx.sh
|
||||
script:
|
||||
- ./scripts/run.osx.sh
|
||||
|
||||
- os: osx
|
||||
osx_image: xcode9.2
|
||||
env:
|
||||
- SOL2_LUA_VERSION=lua-5.3.5
|
||||
before_install:
|
||||
- chmod +x ./scripts/run.osx.sh
|
||||
- chmod +x ./scripts/preparation.osx.sh
|
||||
- ./scripts/preparation.osx.sh
|
||||
script:
|
||||
- ./scripts/run.osx.sh
|
||||
|
||||
notifications:
|
||||
webhooks:
|
||||
urls:
|
||||
- http://skyhook.glitch.me/api/webhooks/427786348108185611/y2nTmghqltv1SKX2DclEMEKyZtRcwKFlwfZpB_mL1A0nZTVS5MSfumqDKq30-gvWgeL5/travis
|
||||
on_success: change
|
||||
on_failure: always
|
||||
on_start: always
|
||||
email:
|
||||
on_success: change
|
||||
on_failure: change
|
||||
on_start: never
|
|
@ -52,27 +52,18 @@ option(SOL2_TESTS "Enable build of tests" OFF)
|
|||
option(SOL2_EXAMPLES "Enable build of examples" OFF)
|
||||
option(SOL2_INTEROP_EXAMPLES "Enable build of interop examples" OFF)
|
||||
option(SOL2_DYNAMIC_LOADING_EXAMPLES "Enable build of interop examples" OFF)
|
||||
option(SOL2_GENERATE_SINGLE "Enable generation and build of single header files" OFF)
|
||||
option(SOL2_SINGLE "Enable use of prepackaged single header files" OFF)
|
||||
option(SOL2_SINGLE "Enable generation and build of single header files" OFF)
|
||||
option(SOL2_DOCS "Enable build of documentation" OFF)
|
||||
option(SOL2_ENABLE_INSTALL "Enable installation of Sol2" ON)
|
||||
# Single tests and examples tests will only be turned on if both SINGLE and TESTS are defined
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_TESTS_SINGLE "Enable build of tests using the premade single headers" ON
|
||||
"SOL2_SINGLE;SOL2_TESTS" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_TESTS_SINGLE_GENERATED "Enable build of tests using the generated single headers" ON
|
||||
"SOL2_GENERATE_SINGLE;SOL2_TESTS" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_EXAMPLES_SINGLE "Enable build of examples using the generated single headers" OFF
|
||||
"SOL2_SINGLE;SOL2_EXAMPLES" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_EXAMPLES_SINGLE_GENERATED "Enable build of examples using the premade single headers" OFF
|
||||
"SOL2_GENERATE_SINGLE;SOL2_EXAMPLES" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_INTEROP_EXAMPLES_SINGLE "Enable build of interop examples using the generated single headers" OFF
|
||||
"SOL2_SINGLE;SOL2_INTEROP_EXAMPLES" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_INTEROP_EXAMPLES_SINGLE_GENERATED "Enable build of interop examples using the generated single headers" OFF
|
||||
"SOL2_GENERATE_SINGLE;SOL2_INTEROP_EXAMPLES" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE "Enable build of dynamic loading examples using the generated single headers" OFF
|
||||
"SOL2_SINGLE;SOL2_DYNAMIC_LOADING_EXAMPLES" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE_GENERATED "Enable build of dynamic loading examples using the generated single headers" OFF
|
||||
"SOL2_GENERATE_SINGLE;SOL2_DYNAMIC_LOADING_EXAMPLES" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_TESTS_EXAMPLES "Enable build of examples as tests" ON
|
||||
"SOL2_EXAMPLES" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(SOL2_TESTS_INTEROP_EXAMPLES "Enable build of interop examples as tests" ON
|
||||
|
@ -154,7 +145,7 @@ endif()
|
|||
|
||||
# # # Single header target
|
||||
# Find Python3 for single header / forward header generation
|
||||
if (SOL2_GENERATE_SINGLE OR SOL2_SINGLE)
|
||||
if (SOL2_SINGLE)
|
||||
message(STATUS "sol2 adding single...")
|
||||
add_subdirectory(single)
|
||||
endif()
|
||||
|
|
157
appveyor.yml
157
appveyor.yml
|
@ -1,157 +0,0 @@
|
|||
# # # # sol2
|
||||
# The MIT License (MIT)
|
||||
#
|
||||
# Copyright (c) 2013-2021 Rapptz, ThePhD, and contributors
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
# this software and associated documentation files (the "Software"), to deal in
|
||||
# the Software without restriction, including without limitation the rights to
|
||||
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
# the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
# subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in all
|
||||
# copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
version: 3.0.2-{build}
|
||||
|
||||
max_jobs: 4
|
||||
|
||||
pull_requests:
|
||||
do_not_increment_build_number: true
|
||||
|
||||
# Ordering is important!
|
||||
# specifying VS 2015 first makes all the 2015 jobs run first
|
||||
# we need this so the MinGW jobs can run first
|
||||
# In general, the matrix seems to order by appearance of first-order
|
||||
# dimensions (Image, Platform, Configuration) and then
|
||||
# the order of whatever elements are in the matrix
|
||||
image:
|
||||
- Visual Studio 2017
|
||||
- Visual Studio 2019
|
||||
|
||||
# Run x64 first, x86 second
|
||||
platform:
|
||||
- x64
|
||||
- x86
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- SOL2_LUA_VERSION: luajit-2.0.5
|
||||
SOL2_BUILD_NINJA: 1
|
||||
- SOL2_LUA_VERSION: luajit-2.1.0-beta3
|
||||
SOL2_BUILD_NINJA: 1
|
||||
- SOL2_LUA_VERSION: 5.3.5
|
||||
SOL2_BUILD_NINJA: 1
|
||||
MINGW_VERSION: 7.3.0
|
||||
- SOL2_LUA_VERSION: 5.3.5
|
||||
SOL2_BUILD_NINJA: 1
|
||||
MINGW_VERSION: 8.1.0
|
||||
- SOL2_LUA_VERSION: luajit-2.0.5
|
||||
SOL2_BUILD_NINJA: 1
|
||||
MINGW_VERSION: 8.1.0
|
||||
- SOL2_LUA_VERSION: luajit-2.1.0-beta3
|
||||
SOL2_BUILD_NINJA: 1
|
||||
MINGW_VERSION: 8.1.0
|
||||
- SOL2_LUA_VERSION: 5.4.0-beta
|
||||
- SOL2_LUA_VERSION: 5.3.5
|
||||
- SOL2_LUA_VERSION: 5.2.4
|
||||
- SOL2_LUA_VERSION: 5.1.5
|
||||
|
||||
matrix:
|
||||
#fast_finish: true
|
||||
allow_failures:
|
||||
# 32-bit builds are temperamental with exceptions
|
||||
- platform: x86
|
||||
- SOL2_LUA_VERSION: luajit-2.0.5
|
||||
- SOL2_LUA_VERSION: luajit-2.1.0-beta3
|
||||
exclude:
|
||||
# Get rid of x86 builds for non-latest (no reason to redo that work)
|
||||
- platform: x86
|
||||
SOL2_LUA_VERSION: 5.4.0-beta
|
||||
- platform: x86
|
||||
SOL2_LUA_VERSION: 5.3.5
|
||||
- platform: x86
|
||||
SOL2_LUA_VERSION: 5.2.4
|
||||
- platform: x86
|
||||
SOL2_LUA_VERSION: 5.1.5
|
||||
|
||||
init:
|
||||
# # Ninja
|
||||
# make sure we have Ninja
|
||||
- set top_level=%cd%
|
||||
- cd ..
|
||||
- md tools
|
||||
- cd tools
|
||||
- set ninja_path=%cd%\ninja
|
||||
- set NINJA_URL="https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip"
|
||||
- appveyor DownloadFile %NINJA_URL% -FileName ninja.zip
|
||||
- 7z x ninja.zip -o%cd%\ninja
|
||||
- cd "%top_level%"
|
||||
# # PATH
|
||||
# manipulations to manupulations need to be done here
|
||||
- set python_path=C:\Python36
|
||||
- set mingw_path=
|
||||
- set llvm_path=
|
||||
- if "%MINGW_VERSION%"=="7.3.0" (if "%PLATFORM%"=="x64" (set mingw_path=C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64\bin) else ( set mingw_path=C:\mingw-w64\i686-7.3.0-posix-seh-rt_v5-rev0\mingw32\bin))
|
||||
- if "%MINGW_VERSION%"=="8.1.0" (if "%PLATFORM%"=="x64" (set mingw_path=C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin) else ( set mingw_path=C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin))
|
||||
- if "%PLATFORM%"=="x64" (set python_path=C:\Python36-x64)
|
||||
- set PATH=%python_path%;%PATH%
|
||||
- set PATH=%mingw_path%;%PATH%
|
||||
- set PATH=%llvm_path%;%PATH%
|
||||
- set PATH=%ninja_path%;%PATH%
|
||||
- echo PATH=%PATH%
|
||||
# # Generators and CMake arguments
|
||||
# configure the generator appropriately
|
||||
- set CMAKE_GENERATOR=Ninja
|
||||
- set arch= x86
|
||||
- set parallelism=
|
||||
- set build_compiler=
|
||||
- if "%PLATFORM%"=="x64" (set arch= Win64)
|
||||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" (set CMAKE_GENERATOR=Visual Studio 16 2019%arch%)
|
||||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (set CMAKE_GENERATOR=Visual Studio 15 2017%arch%)
|
||||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (set CMAKE_GENERATOR=Visual Studio 14 2015%arch%)
|
||||
- if "%SOL2_BUILD_NINJA%"=="1" (set CMAKE_GENERATOR=Ninja) else (set parallelism=/maxcpucount)
|
||||
- if "%SOL2_BUILD_NINJA%"=="1" (set build_compiler=-DCMAKE_CXX_COMPILER=cl.exe -DCMAKE_C_COMPILER=cl.exe)
|
||||
- set vcvars_script="C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||
- if "%PLATFORM%"=="x86" (set vcvars_script="C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86)
|
||||
- if "%MINGW_VERSION%"=="7.3.0" (set CMAKE_GENERATOR=Ninja&&set build_compiler=-DCMAKE_CXX_COMPILER=g++.exe -DCMAKE_C_COMPILER=gcc.exe)
|
||||
- if "%MINGW_VERSION%"=="8.1.0" (set CMAKE_GENERATOR=Ninja&&set build_compiler=-DCMAKE_CXX_COMPILER=g++.exe -DCMAKE_C_COMPILER=gcc.exe)
|
||||
# # Last printouts
|
||||
# print out generator information
|
||||
- echo Appveyor Image is %APPVEYOR_BUILD_WORKER_IMAGE%
|
||||
- echo vcvars_script is %vcvars_script%
|
||||
- echo cmake generator is %CMAKE_GENERATOR%
|
||||
- echo build_compiler is %build_compiler%
|
||||
- echo parallelism is %parallelism%
|
||||
# print out useful tool information
|
||||
- ninja --version
|
||||
- cmake --version
|
||||
|
||||
before_build:
|
||||
- md build-sol2
|
||||
- cd build-sol2
|
||||
- echo %vcvars_script%
|
||||
- cd && %vcvars_script%
|
||||
- cmake .. -G "%CMAKE_GENERATOR%" %build_compiler% -DCMAKE_BUILD_TYPE=Release "-DSOL2_LUA_VERSION=%SOL2_LUA_VERSION%" -DSOL2_PLATFORM=%PLATFORM% -DSOL2_CI=ON -DSOL2_BUILD_LUA=ON -DBUILD_LUA_AS_DLL=ON -DSOL2_TESTS=ON -DSOL2_EXAMPLES=ON -DSOL2_TESTS_EXAMPLES=ON
|
||||
|
||||
build_script:
|
||||
- cmake --build . --config Release -- %parallelism%
|
||||
|
||||
test_script:
|
||||
- ctest -C Release --output-on-failure
|
||||
|
||||
notifications:
|
||||
- provider: Webhook
|
||||
url: http://skyhook.glitch.me/api/webhooks/427786348108185611/y2nTmghqltv1SKX2DclEMEKyZtRcwKFlwfZpB_mL1A0nZTVS5MSfumqDKq30-gvWgeL5/appveyor
|
||||
method: POST
|
||||
on_build_success: true
|
||||
on_build_failure: true
|
||||
on_build_status_changed: true
|
|
@ -22,13 +22,13 @@
|
|||
|
||||
# # # sol2 Examples
|
||||
|
||||
if (SOL2_DYNAMIC_LOADING_EXAMPLES OR SOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE OR SOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE_GENERATED)
|
||||
if (SOL2_DYNAMIC_LOADING_EXAMPLES OR SOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE)
|
||||
# # require_from_dll example
|
||||
# just add the subdirectory
|
||||
add_subdirectory(require_dll_example)
|
||||
endif()
|
||||
|
||||
if (SOL2_INTEROP_EXAMPLES OR SOL2_INTEROP_EXAMPLES_SINGLE OR SOL2_INTEROP_EXAMPLES_SINGLE_GENERATED)
|
||||
if (SOL2_INTEROP_EXAMPLES OR SOL2_INTEROP_EXAMPLES_SINGLE)
|
||||
# # interop examples
|
||||
add_subdirectory(interop/kaguya)
|
||||
add_subdirectory(interop/tolua)
|
||||
|
@ -109,9 +109,3 @@ if (SOL2_EXAMPLES_SINGLE)
|
|||
MAKE_EXAMPLE(${example_source_file} "sol2.single" sol2::sol2::single)
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
if (SOL2_EXAMPLES_SINGLE_GENERATED)
|
||||
foreach(example_source_file ${sol2.examples.sources})
|
||||
MAKE_EXAMPLE(${example_source_file} "sol2.single.generated" sol2::sol2::single_generated)
|
||||
endforeach()
|
||||
endif()
|
||||
|
|
|
@ -62,7 +62,3 @@ endif()
|
|||
if (SOL2_EXAMPLES_SINGLE)
|
||||
MAKE_CUSTOMIZATION_EXAMPLE(".single" sol2::sol2::single)
|
||||
endif()
|
||||
|
||||
if (SOL2_EXAMPLES_SINGLE_GENERATED)
|
||||
MAKE_CUSTOMIZATION_EXAMPLE(".single.generated" sol2::sol2::single_generated)
|
||||
endif()
|
|
@ -60,6 +60,3 @@ endif()
|
|||
if (SOL2_INTEROP_EXAMPLES_SINGLE)
|
||||
make_luabridge_interop_example(sol2::sol2::single ".single")
|
||||
endif()
|
||||
if (SOL2_INTEROP_EXAMPLES_SINGLE_GENERATED)
|
||||
make_luabridge_interop_example(sol2::sol2::single_generated ".single.generated")
|
||||
endif()
|
||||
|
|
|
@ -59,6 +59,3 @@ endif()
|
|||
if (SOL2_INTEROP_EXAMPLES_SINGLE)
|
||||
make_kaguya_interop_example(sol2::sol2::single ".single")
|
||||
endif()
|
||||
if (SOL2_INTEROP_EXAMPLES_SINGLE_GENERATED)
|
||||
make_kaguya_interop_example(sol2::sol2::single_generated ".single.generated")
|
||||
endif()
|
||||
|
|
|
@ -59,6 +59,3 @@ endif()
|
|||
if (SOL2_INTEROP_EXAMPLES_SINGLE)
|
||||
make_luwra_interop_example(sol2::sol2::single ".single")
|
||||
endif()
|
||||
if (SOL2_INTEROP_EXAMPLES_SINGLE_GENERATED)
|
||||
make_luwra_interop_example(sol2::sol2::single_generated ".single.generated")
|
||||
endif()
|
|
@ -61,6 +61,3 @@ endif()
|
|||
if (SOL2_INTEROP_EXAMPLES_SINGLE)
|
||||
make_tolua_interop_example(sol2::sol2::single ".single")
|
||||
endif()
|
||||
if (SOL2_INTEROP_EXAMPLES_SINGLE_GENERATED)
|
||||
make_tolua_interop_example(sol2::sol2::single_generated ".single.generated")
|
||||
endif()
|
||||
|
|
|
@ -132,6 +132,3 @@ endif()
|
|||
if (SOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE)
|
||||
make_require_from_dll_example(sol2::sol2::single ".single")
|
||||
endif()
|
||||
if (SOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE_GENERATED)
|
||||
make_require_from_dll_example(sol2::sol2::single_generated ".single.generated")
|
||||
endif()
|
||||
|
|
|
@ -79,11 +79,9 @@ echo -e "travis_fold:start:build_preparation\r"
|
|||
SOL2_CMAKE_DEFINES+=('-DSOL2_TESTS_EXAMPLES=ON')
|
||||
if [[ ! -z ${SOL2_TEST_SINGLE} ]]
|
||||
then
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_GENERATE_SINGLE=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_EXAMPLES_SINGLE=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_EXAMPLES_SINGLE_GENERATED=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_SINGLE=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_TESTS_SINGLE=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_TESTS_SINGLE_GENERATED=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_EXAMPLES_SINGLE=ON')
|
||||
fi
|
||||
if [[ ! -z ${SOL2_TEST_INTEROP} ]]
|
||||
then
|
||||
|
@ -94,9 +92,7 @@ echo -e "travis_fold:start:build_preparation\r"
|
|||
if [[ ! -z ${SOL2_TEST_SINGLE} ]]
|
||||
then
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_INTEROP_EXAMPLES_SINGLE=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_INTEROP_EXAMPLES_SINGLE_GENERATED=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE=ON')
|
||||
SOL2_CMAKE_DEFINES+=('-DSOL2_DYNAMIC_LOADING_EXAMPLES_SINGLE_GENERATED=ON')
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
|
@ -32,13 +32,13 @@ ninja --version
|
|||
cmake --version
|
||||
|
||||
cd Debug
|
||||
cmake "${SOL2_DIR}" -G Xcode -DCMAKE_BUILD_TYPE=Debug -DSOL2_LUA_VERSION="${SOL2_LUA_VERSION}" -DSOL2_CI=ON -DSOL2_PLATFORM=${SOL2_PLATFORM} -DSOL2_BUILD_LUA=ON -DBUILD_LUA_AS_DLL=OFF -DSOL2_TESTS=ON -DSOL2_EXAMPLES=ON -DSOL2_GENERATE_SINGLE=ON -DSOL2_TESTS_EXAMPLES=ON -DSOL2_EXAMPLES_SINGLE_GENERATED=ON -DSOL2_TESTS_SINGLE_GENERATED=ON
|
||||
cmake "${SOL2_DIR}" -G Xcode -DCMAKE_BUILD_TYPE=Debug -DSOL2_LUA_VERSION="${SOL2_LUA_VERSION}" -DSOL2_CI=ON -DSOL2_PLATFORM=${SOL2_PLATFORM} -DSOL2_BUILD_LUA=ON -DBUILD_LUA_AS_DLL=OFF -DSOL2_TESTS=ON -DSOL2_EXAMPLES=ON -DSOL2_TESTS_EXAMPLES=ON
|
||||
cmake --build . --config Debug
|
||||
ctest --build-config Debug --output-on-failure
|
||||
cd ..
|
||||
|
||||
cd Release
|
||||
cmake "${SOL2_DIR}" -G Xcode -DCMAKE_BUILD_TYPE=Release -DSOL2_LUA_VERSION="${SOL2_LUA_VERSION}" -DSOL2_CI=ON -DSOL2_PLATFORM=${SOL2_PLATFORM} -DSOL2_BUILD_LUA=ON -DBUILD_LUA_AS_DLL=OFF -DSOL2_TESTS=ON -DSOL2_EXAMPLES=ON -DSOL2_GENERATE_SINGLE=ON -DSOL2_TESTS_EXAMPLES=ON -DSOL2_EXAMPLES_SINGLE=ON -DSOL2_TESTS_SINGLE_GENERATED=ON
|
||||
cmake "${SOL2_DIR}" -G Xcode -DCMAKE_BUILD_TYPE=Release -DSOL2_LUA_VERSION="${SOL2_LUA_VERSION}" -DSOL2_CI=ON -DSOL2_PLATFORM=${SOL2_PLATFORM} -DSOL2_BUILD_LUA=ON -DBUILD_LUA_AS_DLL=OFF -DSOL2_TESTS=ON -DSOL2_EXAMPLES=ON -DSOL2_TESTS_EXAMPLES=ON -DSOL2_EXAMPLES_SINGLE=ON
|
||||
cmake --build . --config Release
|
||||
ctest --build-config Release --output-on-failure
|
||||
cd ..
|
||||
|
|
|
@ -22,56 +22,34 @@
|
|||
|
||||
# # # # sol3, single
|
||||
# # # Required minimum version statement
|
||||
cmake_minimum_required(VERSION 3.5.0)
|
||||
cmake_minimum_required(VERSION 3.15.0)
|
||||
|
||||
# single header files
|
||||
file(GLOB SOL2_SINGLE_HEADER_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/include/**/*.hpp)
|
||||
find_package(PythonInterp 3 REQUIRED)
|
||||
|
||||
# to generate, need all of the existing header files
|
||||
file(GLOB sol2_generated_header_sources ${CMAKE_CURRENT_SOURCE_DIR}/../include/**/*.*)
|
||||
source_group(sol2_single FILES ${SOL2_SINGLE_HEADER_SOURCES})
|
||||
# generate the single header if we can find the python3 interpreter
|
||||
add_custom_command(
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_CURRENT_BINARY_DIR}/include/sol"
|
||||
COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/single.py" --input "${CMAKE_CURRENT_SOURCE_DIR}/../include" --output "${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp"
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/single.py" "${sol2_generated_header_sources}"
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp" "${CMAKE_CURRENT_BINARY_DIR}/include/sol/forward.hpp")
|
||||
add_custom_target(sol2_single_header_generator ALL
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/single.py"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp" "${CMAKE_CURRENT_BINARY_DIR}/include/sol/forward.hpp"
|
||||
"${sol2_generated_header_sources}")
|
||||
|
||||
# # # sol3 Library, single
|
||||
# # Add a target for sol3's library to be included by external users
|
||||
# # single version
|
||||
# # # sol3 generated single header library
|
||||
add_library(sol2_single INTERFACE)
|
||||
add_library(sol2::sol2_single ALIAS sol2_single)
|
||||
target_sources(sol2_single INTERFACE ${SOL2_SINGLE_HEADER_SOURCES})
|
||||
set_target_properties(sol2_single
|
||||
PROPERTIES
|
||||
EXPORT_NAME sol2::sol2_single)
|
||||
target_include_directories(sol2_single INTERFACE
|
||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||||
$<INSTALL_INTERFACE:sol/single/include>)
|
||||
EXPORT_NAME sol2::sol2::single
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_BINARY_DIR}/include")
|
||||
add_dependencies(sol2_single sol2_single_header_generator)
|
||||
|
||||
# # # sol3 single generation header
|
||||
# generate the single header if we can find the python3 interpreter
|
||||
if (SOL2_GENERATE_SINGLE)
|
||||
find_package(PythonInterp 3)
|
||||
|
||||
if (NOT PYTHONINTERP_FOUND)
|
||||
message(FATAL_ERROR "sol2 single header cannot be generated as python 3 has not been found: install or set the python 3 interpreter to generate the single header")
|
||||
endif()
|
||||
|
||||
# to generate, need all of the existing header files
|
||||
file(GLOB sol2_generated_header_sources ${CMAKE_CURRENT_SOURCE_DIR}/../include/**/*.*)
|
||||
add_custom_command(
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_CURRENT_BINARY_DIR}/include/sol"
|
||||
COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/single.py" --input "${CMAKE_CURRENT_SOURCE_DIR}/../include" --output "${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp"
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/single.py" "${sol2_generated_header_sources}"
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp" "${CMAKE_CURRENT_BINARY_DIR}/include/sol/forward.hpp")
|
||||
add_custom_target(sol2_single_header_generator ALL
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/single.py"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp" "${CMAKE_CURRENT_BINARY_DIR}/include/sol/forward.hpp"
|
||||
"${sol2_generated_header_sources}")
|
||||
|
||||
# # # sol3 generated single header library
|
||||
add_library(sol2_single_generated INTERFACE)
|
||||
add_library(sol2::sol2_single_generated ALIAS sol2_single_generated)
|
||||
set_target_properties(sol2_single_generated
|
||||
PROPERTIES
|
||||
EXPORT_NAME sol2::sol2_single_generated
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_BINARY_DIR}/include")
|
||||
add_dependencies(sol2_single_generated sol2_single_header_generator)
|
||||
if(SOL2_ENABLE_INSTALL)
|
||||
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp" "${CMAKE_CURRENT_BINARY_DIR}/include/sol/forward.hpp"
|
||||
DESTINATION include/sol/single/sol)
|
||||
endif()
|
||||
if(SOL2_ENABLE_INSTALL)
|
||||
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/include/sol/sol.hpp" "${CMAKE_CURRENT_BINARY_DIR}/include/sol/config.hpp" "${CMAKE_CURRENT_BINARY_DIR}/include/sol/forward.hpp"
|
||||
DESTINATION include/sol/single/sol)
|
||||
endif()
|
||||
|
|
|
@ -1,53 +0,0 @@
|
|||
// The MIT License (MIT)
|
||||
|
||||
// Copyright (c) 2013-2020 Rapptz, ThePhD and contributors
|
||||
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
// this software and associated documentation files (the "Software"), to deal in
|
||||
// the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
// subject to the following conditions:
|
||||
|
||||
// The above copyright notice and this permission notice shall be included in all
|
||||
// copies or substantial portions of the Software.
|
||||
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// This file was generated with a script.
|
||||
// Generated 2021-03-06 04:31:49.108515 UTC
|
||||
// This header was generated with sol v3.2.3 (revision d4b13ff8)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_CONFIG_HPP
|
||||
#define SOL_SINGLE_CONFIG_HPP
|
||||
|
||||
// beginning of sol/config.hpp
|
||||
|
||||
/* Base, empty configuration file!
|
||||
|
||||
To override, place a file in your include paths of the form:
|
||||
|
||||
. (your include path here)
|
||||
| sol (directory, or equivalent)
|
||||
| config.hpp (your config.hpp file)
|
||||
|
||||
So that when sol2 includes the file
|
||||
|
||||
#include <sol/config.hpp>
|
||||
|
||||
it gives you the configuration values you desire. Configuration values can be
|
||||
seen in the safety.rst of the doc/src, or at
|
||||
https://sol2.readthedocs.io/en/latest/safety.html ! You can also pass them through
|
||||
the build system, or the command line options of your compiler.
|
||||
|
||||
*/
|
||||
|
||||
// end of sol/config.hpp
|
||||
|
||||
#endif // SOL_SINGLE_CONFIG_HPP
|
|
@ -1,964 +0,0 @@
|
|||
// The MIT License (MIT)
|
||||
|
||||
// Copyright (c) 2013-2020 Rapptz, ThePhD and contributors
|
||||
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
// this software and associated documentation files (the "Software"), to deal in
|
||||
// the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
// subject to the following conditions:
|
||||
|
||||
// The above copyright notice and this permission notice shall be included in all
|
||||
// copies or substantial portions of the Software.
|
||||
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// This file was generated with a script.
|
||||
// Generated 2021-03-06 04:31:49.090519 UTC
|
||||
// This header was generated with sol v3.2.3 (revision d4b13ff8)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP
|
||||
#define SOL_SINGLE_INCLUDE_FORWARD_HPP
|
||||
|
||||
// beginning of sol/forward.hpp
|
||||
|
||||
#ifndef SOL_FORWARD_HPP
|
||||
#define SOL_FORWARD_HPP
|
||||
|
||||
// beginning of sol/version.hpp
|
||||
|
||||
#include <sol/config.hpp>
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
#define SOL_VERSION_MAJOR 3
|
||||
#define SOL_VERSION_MINOR 2
|
||||
#define SOL_VERSION_PATCH 3
|
||||
#define SOL_VERSION_STRING "3.2.3"
|
||||
#define SOL_VERSION ((SOL_VERSION_MAJOR * 100000) + (SOL_VERSION_MINOR * 100) + (SOL_VERSION_PATCH))
|
||||
|
||||
#define SOL_IS_ON(OP_SYMBOL) ((3 OP_SYMBOL 3) != 0)
|
||||
#define SOL_IS_OFF(OP_SYMBOL) ((3 OP_SYMBOL 3) == 0)
|
||||
#define SOL_IS_DEFAULT_ON(OP_SYMBOL) ((3 OP_SYMBOL 3) > 3)
|
||||
#define SOL_IS_DEFAULT_OFF(OP_SYMBOL) ((3 OP_SYMBOL 3 OP_SYMBOL 3) < 0)
|
||||
|
||||
#define SOL_ON |
|
||||
#define SOL_OFF ^
|
||||
#define SOL_DEFAULT_ON +
|
||||
#define SOL_DEFAULT_OFF -
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#if defined(__clang__)
|
||||
#define SOL_COMPILER_CLANG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_GCC_I_ SOL_OFF
|
||||
#define SOL_COMPILER_EDG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_I_ SOL_ON
|
||||
#define SOL_COMPILER_VCXX_CLANG_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_COMPILER_VCXX_CLANG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_CLANG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_GCC_I_ SOL_OFF
|
||||
#define SOL_COMPILER_EDG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_I_ SOL_ON
|
||||
#define SOL_COMPILER_VCXX_CLANG_I_ SOL_OFF
|
||||
#endif
|
||||
#elif defined(__clang__)
|
||||
#define SOL_COMPILER_CLANG_I_ SOL_ON
|
||||
#define SOL_COMPILER_GCC_I_ SOL_OFF
|
||||
#define SOL_COMPILER_EDG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_CLANG_I_ SOL_OFF
|
||||
#elif defined(__GNUC__)
|
||||
#define SOL_COMPILER_CLANG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_GCC_I_ SOL_ON
|
||||
#define SOL_COMPILER_EDG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_CLANG_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_COMPILER_CLANG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_GCC_I_ SOL_OFF
|
||||
#define SOL_COMPILER_EDG_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_I_ SOL_OFF
|
||||
#define SOL_COMPILER_VCXX_CLANG_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#if defined(__MINGW32__)
|
||||
#define SOL_COMPILER_FRONTEND_MINGW_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_COMPILER_FRONTEND_MINGW_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#if SIZE_MAX <= 0xFFFFULL
|
||||
#define SOL_PLATFORM_X16_I_ SOL_ON
|
||||
#define SOL_PLATFORM_X86_I_ SOL_OFF
|
||||
#define SOL_PLATFORM_X64_I_ SOL_OFF
|
||||
#elif SIZE_MAX <= 0xFFFFFFFFULL
|
||||
#define SOL_PLATFORM_X16_I_ SOL_OFF
|
||||
#define SOL_PLATFORM_X86_I_ SOL_ON
|
||||
#define SOL_PLATFORM_X64_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_PLATFORM_X16_I_ SOL_OFF
|
||||
#define SOL_PLATFORM_X86_I_ SOL_OFF
|
||||
#define SOL_PLATFORM_X64_I_ SOL_ON
|
||||
#endif
|
||||
|
||||
#define SOL_PLATFORM_ARM32_I_ SOL_OFF
|
||||
#define SOL_PLATFORM_ARM64_I_ SOL_OFF
|
||||
|
||||
#if defined(_WIN32)
|
||||
#define SOL_PLATFORM_WINDOWS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_PLATFORM_WINDOWS_I_ SOL_OFF
|
||||
#endif
|
||||
#if defined(__APPLE__)
|
||||
#define SOL_PLATFORM_APPLE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_PLATFORM_APPLE_I_ SOL_OFF
|
||||
#endif
|
||||
#if defined(__unix__)
|
||||
#define SOL_PLATFORM_UNIXLIKE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_PLATFORM_UNIXLIKE_I_ SOL_OFF
|
||||
#endif
|
||||
#if defined(__linux__)
|
||||
#define SOL_PLATFORM_LINUXLIKE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_PLATFORM_LINUXLIKE_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#define SOL_PLATFORM_APPLE_IPHONE_I_ SOL_OFF
|
||||
#define SOL_PLATFORM_BSDLIKE_I_ SOL_OFF
|
||||
|
||||
#if defined(SOL_IN_DEBUG_DETECTED)
|
||||
#if SOL_IN_DEBUG_DETECTED != 0
|
||||
#define SOL_DEBUG_BUILD_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_DEBUG_BUILD_I_ SOL_OFF
|
||||
#endif
|
||||
#elif !defined(NDEBUG)
|
||||
#if SOL_IS_ON(SOL_COMPILER_VCXX_I_) && defined(_DEBUG)
|
||||
#define SOL_DEBUG_BUILD_I_ SOL_ON
|
||||
#elif (SOL_IS_ON(SOL_COMPILER_CLANG_I_) || SOL_IS_ON(SOL_COMPILER_GCC_I_)) && !defined(__OPTIMIZE__)
|
||||
#define SOL_DEBUG_BUILD_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_DEBUG_BUILD_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_DEBUG_BUILD_I_ SOL_DEFAULT_OFF
|
||||
#endif // We are in a debug mode of some sort
|
||||
|
||||
#if defined(SOL_NO_EXCEPTIONS)
|
||||
#if (SOL_NO_EXCEPTIONS != 0)
|
||||
#define SOL_EXCEPTIONS_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_EXCEPTIONS_I_ SOL_ON
|
||||
#endif
|
||||
#elif SOL_IS_ON(SOL_COMPILER_VCXX_I_)
|
||||
#if !defined(_CPPUNWIND)
|
||||
#define SOL_EXCEPTIONS_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_EXCEPTIONS_I_ SOL_ON
|
||||
#endif
|
||||
#elif SOL_IS_ON(SOL_COMPILER_CLANG_I_) || SOL_IS_ON(SOL_COMPILER_GCC_I_)
|
||||
#if !defined(__EXCEPTIONS)
|
||||
#define SOL_EXCEPTIONS_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_EXCEPTIONS_I_ SOL_ON
|
||||
#endif
|
||||
#else
|
||||
#define SOL_EXCEPTIONS_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
|
||||
#if defined(SOL_NO_RTTI)
|
||||
#if (SOL_NO_RTTI != 0)
|
||||
#define SOL_RTTI_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_RTTI_I_ SOL_ON
|
||||
#endif
|
||||
#elif SOL_IS_ON(SOL_COMPILER_VCXX_I_)
|
||||
#if !defined(_CPPRTTI)
|
||||
#define SOL_RTTI_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_RTTI_I_ SOL_ON
|
||||
#endif
|
||||
#elif SOL_IS_ON(SOL_COMPILER_CLANG_I_) || SOL_IS_ON(SOL_COMPILER_GCC_I_)
|
||||
#if !defined(__GXX_RTTI)
|
||||
#define SOL_RTTI_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_RTTI_I_ SOL_ON
|
||||
#endif
|
||||
#else
|
||||
#define SOL_RTTI_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
|
||||
#if defined(SOL_NO_THREAD_LOCAL)
|
||||
#if SOL_NO_THREAD_LOCAL != 0
|
||||
#define SOL_USE_THREAD_LOCAL_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_USE_THREAD_LOCAL_I_ SOL_ON
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_THREAD_LOCAL_I_ SOL_DEFAULT_ON
|
||||
#endif // thread_local keyword is bjorked on some platforms
|
||||
|
||||
#if defined(SOL_ALL_SAFETIES_ON)
|
||||
#if SOL_ALL_SAFETIES_ON != 0
|
||||
#define SOL_ALL_SAFETIES_ON_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_ALL_SAFETIES_ON_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_ALL_SAFETIES_ON_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_GETTER)
|
||||
#if SOL_SAFE_GETTER != 0
|
||||
#define SOL_SAFE_GETTER_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_GETTER_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_GETTER_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_GETTER_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_GETTER_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_USERTYPE)
|
||||
#if SOL_SAFE_USERTYPE != 0
|
||||
#define SOL_SAFE_USERTYPE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_USERTYPE_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_USERTYPE_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_USERTYPE_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_USERTYPE_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_REFERENCES)
|
||||
#if SOL_SAFE_REFERENCES != 0
|
||||
#define SOL_SAFE_REFERENCES_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_REFERENCES_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_REFERENCES_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_REFERENCES_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_REFERENCES_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_FUNCTIONS)
|
||||
#if SOL_SAFE_FUNCTIONS != 0
|
||||
#define SOL_SAFE_FUNCTION_OBJECTS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_FUNCTION_OBJECTS_I_ SOL_OFF
|
||||
#endif
|
||||
#elif defined (SOL_SAFE_FUNCTION_OBJECTS)
|
||||
#if SOL_SAFE_FUNCTION_OBJECTS != 0
|
||||
#define SOL_SAFE_FUNCTION_OBJECTS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_FUNCTION_OBJECTS_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_FUNCTION_OBJECTS_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_FUNCTION_OBJECTS_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_FUNCTION_OBJECTS_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_FUNCTION_CALLS)
|
||||
#if SOL_SAFE_FUNCTION_CALLS != 0
|
||||
#define SOL_SAFE_FUNCTION_CALLS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_FUNCTION_CALLS_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_FUNCTION_CALLS_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_FUNCTION_CALLS_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_FUNCTION_CALLS_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_PROXIES)
|
||||
#if SOL_SAFE_PROXIES != 0
|
||||
#define SOL_SAFE_PROXIES_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_PROXIES_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_PROXIES_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_PROXIES_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_PROXIES_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_NUMERICS)
|
||||
#if SOL_SAFE_NUMERICS != 0
|
||||
#define SOL_SAFE_NUMERICS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_NUMERICS_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_NUMERICS_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_NUMERICS_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_NUMERICS_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_SAFE_STACK_CHECK)
|
||||
#if SOL_SAFE_STACK_CHECK != 0
|
||||
#define SOL_SAFE_STACK_CHECK_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_SAFE_STACK_CHECK_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_SAFE_STACK_CHECK_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_SAFE_STACK_CHECK_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_SAFE_STACK_CHECK_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_NO_CHECK_NUMBER_PRECISION)
|
||||
#if SOL_NO_CHECK_NUMBER_PRECISION != 0
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_ON
|
||||
#endif
|
||||
#elif defined(SOL_NO_CHECKING_NUMBER_PRECISION)
|
||||
#if SOL_NO_CHECKING_NUMBER_PRECISION != 0
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_ON
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_SAFE_NUMERICS_I_)
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_NUMBER_PRECISION_CHECKS_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_STRINGS_ARE_NUMBERS)
|
||||
#if (SOL_STRINGS_ARE_NUMBERS != 0)
|
||||
#define SOL_STRINGS_ARE_NUMBERS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_STRINGS_ARE_NUMBERS_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_STRINGS_ARE_NUMBERS_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_ENABLE_INTEROP)
|
||||
#if SOL_ENABLE_INTEROP != 0
|
||||
#define SOL_USE_INTEROP_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_INTEROP_I_ SOL_OFF
|
||||
#endif
|
||||
#elif defined(SOL_USE_INTEROP)
|
||||
#if SOL_USE_INTEROP != 0
|
||||
#define SOL_USE_INTEROP_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_INTEROP_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_INTEROP_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_NO_NIL)
|
||||
#if (SOL_NO_NIL != 0)
|
||||
#define SOL_NIL_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_NIL_I_ SOL_ON
|
||||
#endif
|
||||
#elif defined(__MAC_OS_X_VERSION_MAX_ALLOWED) || defined(__OBJC__) || defined(nil)
|
||||
#define SOL_NIL_I_ SOL_DEFAULT_OFF
|
||||
#else
|
||||
#define SOL_NIL_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
|
||||
#if defined(SOL_USERTYPE_TYPE_BINDING_INFO)
|
||||
#if (SOL_USERTYPE_TYPE_BINDING_INFO != 0)
|
||||
#define SOL_USERTYPE_TYPE_BINDING_INFO_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USERTYPE_TYPE_BINDING_INFO_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USERTYPE_TYPE_BINDING_INFO_I_ SOL_DEFAULT_ON
|
||||
#endif // We should generate a my_type.__type table with lots of class information for usertypes
|
||||
|
||||
#if defined(SOL_AUTOMAGICAL_TYPES_BY_DEFAULT)
|
||||
#if (SOL_AUTOMAGICAL_TYPES_BY_DEFAULT != 0)
|
||||
#define SOL_DEFAULT_AUTOMAGICAL_USERTYPES_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_DEFAULT_AUTOMAGICAL_USERTYPES_I_ SOL_OFF
|
||||
#endif
|
||||
#elif defined(SOL_DEFAULT_AUTOMAGICAL_USERTYPES)
|
||||
#if (SOL_DEFAULT_AUTOMAGICAL_USERTYPES != 0)
|
||||
#define SOL_DEFAULT_AUTOMAGICAL_USERTYPES_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_DEFAULT_AUTOMAGICAL_USERTYPES_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_DEFAULT_AUTOMAGICAL_USERTYPES_I_ SOL_DEFAULT_ON
|
||||
#endif // make is_automagical on/off by default
|
||||
|
||||
#if defined(SOL_STD_VARIANT)
|
||||
#if (SOL_STD_VARIANT != 0)
|
||||
#define SOL_STD_VARIANT_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_STD_VARIANT_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_COMPILER_CLANG_I_) && SOL_IS_ON(SOL_PLATFORM_APPLE_I_)
|
||||
#if defined(__has_include)
|
||||
#if __has_include(<variant>)
|
||||
#define SOL_STD_VARIANT_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_STD_VARIANT_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_STD_VARIANT_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_STD_VARIANT_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
#endif // make is_automagical on/off by default
|
||||
|
||||
#if defined(SOL_NOEXCEPT_FUNCTION_TYPE)
|
||||
#if (SOL_NOEXCEPT_FUNCTION_TYPE != 0)
|
||||
#define SOL_USE_NOEXCEPT_FUNCTION_TYPE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_NOEXCEPT_FUNCTION_TYPE_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if defined(__cpp_noexcept_function_type)
|
||||
#define SOL_USE_NOEXCEPT_FUNCTION_TYPE_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_COMPILER_VCXX_I_) && (defined(_MSVC_LANG) && (_MSVC_LANG < 201403L))
|
||||
// There is a bug in the VC++ compiler??
|
||||
// on /std:c++latest under x86 conditions (VS 15.5.2),
|
||||
// compiler errors are tossed for noexcept markings being on function types
|
||||
// that are identical in every other way to their non-noexcept marked types function types...
|
||||
// VS 2019: There is absolutely a bug.
|
||||
#define SOL_USE_NOEXCEPT_FUNCTION_TYPE_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_USE_NOEXCEPT_FUNCTION_TYPE_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
#endif // noexcept is part of a function's type
|
||||
|
||||
#if defined(SOL_STACK_STRING_OPTIMIZATION_SIZE) && SOL_STACK_STRING_OPTIMIZATION_SIZE > 0
|
||||
#define SOL_OPTIMIZATION_STRING_CONVERSION_STACK_SIZE_I_ SOL_STACK_STRING_OPTIMIZATION_SIZE
|
||||
#else
|
||||
#define SOL_OPTIMIZATION_STRING_CONVERSION_STACK_SIZE_I_ 1024
|
||||
#endif
|
||||
|
||||
#if defined(SOL_ID_SIZE) && SOL_ID_SIZE > 0
|
||||
#define SOL_ID_SIZE_I_ SOL_ID_SIZE
|
||||
#else
|
||||
#define SOL_ID_SIZE_I_ 512
|
||||
#endif
|
||||
|
||||
#if defined(LUA_IDSIZE) && LUA_IDSIZE > 0
|
||||
#define SOL_FILE_ID_SIZE_I_ LUA_IDSIZE
|
||||
#elif defined(SOL_ID_SIZE) && SOL_ID_SIZE > 0
|
||||
#define SOL_FILE_ID_SIZE_I_ SOL_FILE_ID_SIZE
|
||||
#else
|
||||
#define SOL_FILE_ID_SIZE_I_ 2048
|
||||
#endif
|
||||
|
||||
#if defined(SOL_PRINT_ERRORS)
|
||||
#if (SOL_PRINT_ERRORS != 0)
|
||||
#define SOL_PRINT_ERRORS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_PRINT_ERRORS_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if SOL_IS_ON(SOL_ALL_SAFETIES_ON_I_)
|
||||
#define SOL_PRINT_ERRORS_I_ SOL_ON
|
||||
#elif SOL_IS_ON(SOL_DEBUG_BUILD_I_)
|
||||
#define SOL_PRINT_ERRORS_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_PRINT_ERRORS_I_ SOL_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_DEFAULT_PASS_ON_ERROR)
|
||||
#if (SOL_DEFAULT_PASS_ON_ERROR != 0)
|
||||
#define SOL_DEFAULT_PASS_ON_ERROR_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_DEFAULT_PASS_ON_ERROR_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_DEFAULT_PASS_ON_ERROR_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_USING_CXX_LUA)
|
||||
#if (SOL_USING_CXX_LUA != 0)
|
||||
#define SOL_USE_CXX_LUA_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_CXX_LUA_I_ SOL_OFF
|
||||
#endif
|
||||
#elif defined(SOL_USE_CXX_LUA)
|
||||
#if (SOL_USE_CXX_LUA != 0)
|
||||
#define SOL_USE_CXX_LUA_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_CXX_LUA_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_CXX_LUA_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_USING_CXX_LUAJIT)
|
||||
#if (SOL_USING_CXX_LUA != 0)
|
||||
#define SOL_USE_CXX_LUAJIT_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_CXX_LUAJIT_I_ SOL_OFF
|
||||
#endif
|
||||
#elif defined(SOL_USE_CXX_LUAJIT)
|
||||
#if (SOL_USE_CXX_LUA != 0)
|
||||
#define SOL_USE_CXX_LUAJIT_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_CXX_LUAJIT_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_CXX_LUAJIT_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_NO_LUA_HPP)
|
||||
#if (SOL_NO_LUA_HPP != 0)
|
||||
#define SOL_USE_LUA_HPP_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_USE_LUA_HPP_I_ SOL_ON
|
||||
#endif
|
||||
#elif defined(SOL_USING_CXX_LUA)
|
||||
#define SOL_USE_LUA_HPP_I_ SOL_OFF
|
||||
#elif defined(__has_include)
|
||||
#if __has_include(<lua.hpp>)
|
||||
#define SOL_USE_LUA_HPP_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_LUA_HPP_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_LUA_HPP_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
|
||||
#if defined(SOL_CONTAINERS_START)
|
||||
#define SOL_CONTAINER_START_INDEX_I_ SOL_CONTAINERS_START
|
||||
#elif defined(SOL_CONTAINERS_START_INDEX)
|
||||
#define SOL_CONTAINER_START_INDEX_I_ SOL_CONTAINERS_START_INDEX
|
||||
#elif defined(SOL_CONTAINER_START_INDEX)
|
||||
#define SOL_CONTAINER_START_INDEX_I_ SOL_CONTAINER_START_INDEX
|
||||
#else
|
||||
#define SOL_CONTAINER_START_INDEX_I_ 1
|
||||
#endif
|
||||
|
||||
#if defined (SOL_NO_MEMORY_ALIGNMENT)
|
||||
#if (SOL_NO_MEMORY_ALIGNMENT != 0)
|
||||
#define SOL_ALIGN_MEMORY_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_ALIGN_MEMORY_I_ SOL_ON
|
||||
#endif
|
||||
#else
|
||||
#define SOL_ALIGN_MEMORY_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
|
||||
#if defined(SOL_USE_BOOST)
|
||||
#if (SOL_USE_BOOST != 0)
|
||||
#define SOL_USE_BOOST_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_BOOST_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_BOOST_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_USE_UNSAFE_BASE_LOOKUP)
|
||||
#if (SOL_USE_UNSAFE_BASE_LOOKUP != 0)
|
||||
#define SOL_USE_UNSAFE_BASE_LOOKUP_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USE_UNSAFE_BASE_LOOKUP_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_UNSAFE_BASE_LOOKUP_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_INSIDE_UNREAL)
|
||||
#if (SOL_INSIDE_UNREAL != 0)
|
||||
#define SOL_INSIDE_UNREAL_ENGINE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_INSIDE_UNREAL_ENGINE_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#if defined(UE_BUILD_DEBUG) || defined(UE_BUILD_DEVELOPMENT) || defined(UE_BUILD_TEST) || defined(UE_BUILD_SHIPPING) || defined(UE_SERVER)
|
||||
#define SOL_INSIDE_UNREAL_ENGINE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_INSIDE_UNREAL_ENGINE_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(SOL_NO_COMPAT)
|
||||
#if (SOL_NO_COMPAT != 0)
|
||||
#define SOL_USE_COMPATIBILITY_LAYER_I_ SOL_OFF
|
||||
#else
|
||||
#define SOL_USE_COMPATIBILITY_LAYER_I_ SOL_ON
|
||||
#endif
|
||||
#else
|
||||
#define SOL_USE_COMPATIBILITY_LAYER_I_ SOL_DEFAULT_ON
|
||||
#endif
|
||||
|
||||
#if defined(SOL_GET_FUNCTION_POINTER_UNSAFE)
|
||||
#if (SOL_GET_FUNCTION_POINTER_UNSAFE != 0)
|
||||
#define SOL_GET_FUNCTION_POINTER_UNSAFE_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_GET_FUNCTION_POINTER_UNSAFE_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_GET_FUNCTION_POINTER_UNSAFE_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_FUNCTION_CALL_VALUE_SEMANTICS)
|
||||
#if (SOL_FUNCTION_CALL_VALUE_SEMANTICS != 0)
|
||||
#define SOL_FUNCTION_CALL_VALUE_SEMANTICS_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_FUNCTION_CALL_VALUE_SEMANTICS_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL_FUNCTION_CALL_VALUE_SEMANTICS_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if SOL_IS_ON(SOL_COMPILER_FRONTEND_MINGW_I_) && defined(__GNUC__) && (__GNUC__ < 6)
|
||||
// MinGW is off its rocker in some places...
|
||||
#define SOL_MINGW_CCTYPE_IS_POISONED_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_MINGW_CCTYPE_IS_POISONED_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_CHAR8_T)
|
||||
#if (SOL_CHAR8_T != 0)
|
||||
#define SOL_CHAR8_T_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_CHAR8_T_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#ifdef __cpp_char8_t
|
||||
#define SOL_CHAR8_T_I_ SOL_DEFAULT_ON
|
||||
#else
|
||||
#define SOL_CHAR8_T_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if SOL_IS_ON(SOL_USE_BOOST_I_)
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#if BOOST_VERSION >= 107500 // Since Boost 1.75.0 boost::none is constexpr
|
||||
#define SOL_BOOST_NONE_CONSTEXPR_I_ constexpr
|
||||
#else
|
||||
#define SOL_BOOST_NONE_CONSTEXPR_I_ const
|
||||
#endif // BOOST_VERSION
|
||||
#else
|
||||
// assume boost isn't using a garbage version
|
||||
#define SOL_BOOST_NONE_CONSTEXPR_I_ constexpr
|
||||
#endif
|
||||
|
||||
#if defined(SOL2_CI)
|
||||
#if (SOL2_CI != 0)
|
||||
#define SOL2_CI_I_ SOL_ON
|
||||
#else
|
||||
#define SOL2_CI_I_ SOL_OFF
|
||||
#endif
|
||||
#else
|
||||
#define SOL2_CI_I_ SOL_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_C_ASSERT)
|
||||
#define SOL_USER_C_ASSERT_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USER_C_ASSERT_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
#if defined(SOL_M_ASSERT)
|
||||
#define SOL_USER_M_ASSERT_I_ SOL_ON
|
||||
#else
|
||||
#define SOL_USER_M_ASSERT_I_ SOL_DEFAULT_OFF
|
||||
#endif
|
||||
|
||||
// end of sol/version.hpp
|
||||
|
||||
#include <utility>
|
||||
#include <type_traits>
|
||||
#include <string_view>
|
||||
|
||||
#if SOL_IS_ON(SOL_USE_CXX_LUA_I_) || SOL_IS_ON(SOL_USE_CXX_LUAJIT_I_)
|
||||
struct lua_State;
|
||||
#else
|
||||
extern "C" {
|
||||
struct lua_State;
|
||||
}
|
||||
#endif // C++ Mangling for Lua vs. Not
|
||||
|
||||
namespace sol {
|
||||
|
||||
enum class type;
|
||||
|
||||
class stateless_reference;
|
||||
template <bool b>
|
||||
class basic_reference;
|
||||
using reference = basic_reference<false>;
|
||||
using main_reference = basic_reference<true>;
|
||||
class stateless_stack_reference;
|
||||
class stack_reference;
|
||||
|
||||
template <typename A>
|
||||
class basic_bytecode;
|
||||
|
||||
struct lua_value;
|
||||
|
||||
struct proxy_base_tag;
|
||||
template <typename>
|
||||
struct proxy_base;
|
||||
template <typename, typename>
|
||||
struct table_proxy;
|
||||
|
||||
template <bool, typename>
|
||||
class basic_table_core;
|
||||
template <bool b>
|
||||
using table_core = basic_table_core<b, reference>;
|
||||
template <bool b>
|
||||
using main_table_core = basic_table_core<b, main_reference>;
|
||||
template <bool b>
|
||||
using stack_table_core = basic_table_core<b, stack_reference>;
|
||||
template <typename base_type>
|
||||
using basic_table = basic_table_core<false, base_type>;
|
||||
using table = table_core<false>;
|
||||
using global_table = table_core<true>;
|
||||
using main_table = main_table_core<false>;
|
||||
using main_global_table = main_table_core<true>;
|
||||
using stack_table = stack_table_core<false>;
|
||||
using stack_global_table = stack_table_core<true>;
|
||||
|
||||
template <typename>
|
||||
struct basic_lua_table;
|
||||
using lua_table = basic_lua_table<reference>;
|
||||
using stack_lua_table = basic_lua_table<stack_reference>;
|
||||
|
||||
template <typename T, typename base_type>
|
||||
class basic_usertype;
|
||||
template <typename T>
|
||||
using usertype = basic_usertype<T, reference>;
|
||||
template <typename T>
|
||||
using stack_usertype = basic_usertype<T, stack_reference>;
|
||||
|
||||
template <typename base_type>
|
||||
class basic_metatable;
|
||||
using metatable = basic_metatable<reference>;
|
||||
using stack_metatable = basic_metatable<stack_reference>;
|
||||
|
||||
template <typename base_t>
|
||||
struct basic_environment;
|
||||
using environment = basic_environment<reference>;
|
||||
using main_environment = basic_environment<main_reference>;
|
||||
using stack_environment = basic_environment<stack_reference>;
|
||||
|
||||
template <typename T, bool>
|
||||
class basic_function;
|
||||
template <typename T, bool, typename H>
|
||||
class basic_protected_function;
|
||||
using unsafe_function = basic_function<reference, false>;
|
||||
using safe_function = basic_protected_function<reference, false, reference>;
|
||||
using main_unsafe_function = basic_function<main_reference, false>;
|
||||
using main_safe_function = basic_protected_function<main_reference, false, reference>;
|
||||
using stack_unsafe_function = basic_function<stack_reference, false>;
|
||||
using stack_safe_function = basic_protected_function<stack_reference, false, reference>;
|
||||
using stack_aligned_unsafe_function = basic_function<stack_reference, true>;
|
||||
using stack_aligned_safe_function = basic_protected_function<stack_reference, true, reference>;
|
||||
using protected_function = safe_function;
|
||||
using main_protected_function = main_safe_function;
|
||||
using stack_protected_function = stack_safe_function;
|
||||
using stack_aligned_protected_function = stack_aligned_safe_function;
|
||||
#if SOL_IS_ON(SOL_SAFE_FUNCTION_OBJECTS_I_)
|
||||
using function = protected_function;
|
||||
using main_function = main_protected_function;
|
||||
using stack_function = stack_protected_function;
|
||||
using stack_aligned_function = stack_aligned_safe_function;
|
||||
#else
|
||||
using function = unsafe_function;
|
||||
using main_function = main_unsafe_function;
|
||||
using stack_function = stack_unsafe_function;
|
||||
using stack_aligned_function = stack_aligned_unsafe_function;
|
||||
#endif
|
||||
using stack_aligned_stack_handler_function = basic_protected_function<stack_reference, true, stack_reference>;
|
||||
|
||||
struct unsafe_function_result;
|
||||
struct protected_function_result;
|
||||
using safe_function_result = protected_function_result;
|
||||
#if SOL_IS_ON(SOL_SAFE_FUNCTION_OBJECTS_I_)
|
||||
using function_result = safe_function_result;
|
||||
#else
|
||||
using function_result = unsafe_function_result;
|
||||
#endif
|
||||
|
||||
template <typename base_t>
|
||||
class basic_object_base;
|
||||
template <typename base_t>
|
||||
class basic_object;
|
||||
template <typename base_t>
|
||||
class basic_userdata;
|
||||
template <typename base_t>
|
||||
class basic_lightuserdata;
|
||||
template <typename base_t>
|
||||
class basic_coroutine;
|
||||
template <typename base_t>
|
||||
class basic_packaged_coroutine;
|
||||
template <typename base_t>
|
||||
class basic_thread;
|
||||
|
||||
using object = basic_object<reference>;
|
||||
using userdata = basic_userdata<reference>;
|
||||
using lightuserdata = basic_lightuserdata<reference>;
|
||||
using thread = basic_thread<reference>;
|
||||
using coroutine = basic_coroutine<reference>;
|
||||
using packaged_coroutine = basic_packaged_coroutine<reference>;
|
||||
using main_object = basic_object<main_reference>;
|
||||
using main_userdata = basic_userdata<main_reference>;
|
||||
using main_lightuserdata = basic_lightuserdata<main_reference>;
|
||||
using main_coroutine = basic_coroutine<main_reference>;
|
||||
using stack_object = basic_object<stack_reference>;
|
||||
using stack_userdata = basic_userdata<stack_reference>;
|
||||
using stack_lightuserdata = basic_lightuserdata<stack_reference>;
|
||||
using stack_thread = basic_thread<stack_reference>;
|
||||
using stack_coroutine = basic_coroutine<stack_reference>;
|
||||
|
||||
struct stack_proxy_base;
|
||||
struct stack_proxy;
|
||||
struct variadic_args;
|
||||
struct variadic_results;
|
||||
struct stack_count;
|
||||
struct this_state;
|
||||
struct this_main_state;
|
||||
struct this_environment;
|
||||
|
||||
class state_view;
|
||||
class state;
|
||||
|
||||
template <typename T>
|
||||
struct as_table_t;
|
||||
template <typename T>
|
||||
struct as_container_t;
|
||||
template <typename T>
|
||||
struct nested;
|
||||
template <typename T>
|
||||
struct light;
|
||||
template <typename T>
|
||||
struct user;
|
||||
template <typename T>
|
||||
struct as_args_t;
|
||||
template <typename T>
|
||||
struct protect_t;
|
||||
template <typename F, typename... Policies>
|
||||
struct policy_wrapper;
|
||||
|
||||
template <typename T>
|
||||
struct usertype_traits;
|
||||
template <typename T>
|
||||
struct unique_usertype_traits;
|
||||
|
||||
template <typename... Args>
|
||||
struct types {
|
||||
typedef std::make_index_sequence<sizeof...(Args)> indices;
|
||||
static constexpr std::size_t size() {
|
||||
return sizeof...(Args);
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct derive : std::false_type {
|
||||
typedef types<> type;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct base : std::false_type {
|
||||
typedef types<> type;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct weak_derive {
|
||||
static bool value;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
bool weak_derive<T>::value = false;
|
||||
|
||||
namespace stack {
|
||||
struct record;
|
||||
}
|
||||
|
||||
#if SOL_IS_OFF(SOL_USE_BOOST_I_)
|
||||
template <class T>
|
||||
class optional;
|
||||
|
||||
template <class T>
|
||||
class optional<T&>;
|
||||
#endif
|
||||
|
||||
using check_handler_type = int(lua_State*, int, type, type, const char*);
|
||||
|
||||
} // namespace sol
|
||||
|
||||
#define SOL_BASE_CLASSES(T, ...) \
|
||||
namespace sol { \
|
||||
template <> \
|
||||
struct base<T> : std::true_type { \
|
||||
typedef ::sol::types<__VA_ARGS__> type; \
|
||||
}; \
|
||||
} \
|
||||
void a_sol3_detail_function_decl_please_no_collide()
|
||||
#define SOL_DERIVED_CLASSES(T, ...) \
|
||||
namespace sol { \
|
||||
template <> \
|
||||
struct derive<T> : std::true_type { \
|
||||
typedef ::sol::types<__VA_ARGS__> type; \
|
||||
}; \
|
||||
} \
|
||||
void a_sol3_detail_function_decl_please_no_collide()
|
||||
|
||||
#endif // SOL_FORWARD_HPP
|
||||
// end of sol/forward.hpp
|
||||
|
||||
#endif // SOL_SINGLE_INCLUDE_FORWARD_HPP
|
File diff suppressed because it is too large
Load Diff
|
@ -95,6 +95,3 @@ endif()
|
|||
if (SOL2_TESTS_SINGLE)
|
||||
CREATE_TEST(config_function_pointers_tests_single "config_function_pointers_tests.single" sol2::sol2::single)
|
||||
endif()
|
||||
if (SOL2_TESTS_SINGLE_GENERATED)
|
||||
CREATE_TEST(config_function_pointers_tests_generated_single "config_function_pointers_tests.single.generated" sol2::sol2::single_generated)
|
||||
endif()
|
||||
|
|
|
@ -94,6 +94,3 @@ endif()
|
|||
if (SOL2_TESTS_SINGLE)
|
||||
CREATE_TEST(compile_tests_single "sol2.compile_tests.single" sol2::sol2::single)
|
||||
endif()
|
||||
if (SOL2_TESTS_SINGLE_GENERATED)
|
||||
CREATE_TEST(compile_tests_generated_single "sol2.compile_tests.single.generated" sol2::sol2::single_generated)
|
||||
endif()
|
||||
|
|
|
@ -90,6 +90,3 @@ endif()
|
|||
if (SOL2_TESTS_SINGLE)
|
||||
CREATE_TEST(regression_1011_tests_single "regression_1011_tests.single" sol2::sol2::single)
|
||||
endif()
|
||||
if (SOL2_TESTS_SINGLE_GENERATED)
|
||||
CREATE_TEST(regression_1011_tests_generated_single "regression_1011_tests.single.generated" sol2::sol2::single_generated)
|
||||
endif()
|
||||
|
|
|
@ -63,6 +63,3 @@ endif()
|
|||
if (SOL2_TESTS_SINGLE)
|
||||
CREATE_TEST(regression_tests_single "regression_tests.single" sol2::sol2::single)
|
||||
endif()
|
||||
if (SOL2_TESTS_SINGLE_GENERATED)
|
||||
CREATE_TEST(regression_tests_generated_single "regression_tests.single.generated" sol2::sol2::single_generated)
|
||||
endif()
|
||||
|
|
|
@ -92,6 +92,3 @@ endif()
|
|||
if (SOL2_TESTS_SINGLE)
|
||||
CREATE_TEST(runtime_tests_single "sol2.single.runtime_tests" sol2::sol2::single)
|
||||
endif()
|
||||
if (SOL2_TESTS_SINGLE_GENERATED)
|
||||
CREATE_TEST(runtime_tests_generated_single "sol2.single.generated.runtime_tests" sol2::sol2::single_generated)
|
||||
endif()
|
||||
|
|
|
@ -32,7 +32,7 @@ TEST_CASE("proxy/function results", "make sure that function results return prop
|
|||
SECTION("unsafe_function_result") {
|
||||
auto ufr = lua.script("return 1, 2, 3, 4");
|
||||
int accum = 0;
|
||||
for (const auto& r : ufr) {
|
||||
for (auto r : ufr) {
|
||||
int v = r;
|
||||
accum += v;
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ TEST_CASE("proxy/function results", "make sure that function results return prop
|
|||
SECTION("protected_function_result") {
|
||||
auto pfr = lua.safe_script("return 1, 2, 3, 4");
|
||||
int accum = 0;
|
||||
for (const auto& r : pfr) {
|
||||
for (auto r : pfr) {
|
||||
int v = r;
|
||||
accum += v;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user