├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── README.md ├── cmake-modules ├── UseJavaEx.cmake └── UseJavaSourceFileList.cmake ├── contrib ├── CMakeLists.txt └── gtest-1.7.0 │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README │ └── fused-src │ └── gtest │ ├── gtest-all.cc │ ├── gtest.h │ └── gtest_main.cc ├── samples ├── CMakeLists.txt ├── Sample.cpp ├── Sample.java └── Sample.py ├── src ├── CMakeLists.txt ├── LeapC++.cpp ├── LeapC++.h ├── LeapC++.i ├── LeapC++.rc.in ├── LeapImplementationC++.cpp ├── LeapImplementationC++.h ├── LeapMath.h └── testing │ ├── ApiPropertyTest.cpp │ ├── CMakeLists.txt │ ├── IteratorTest.cpp │ └── StaticTest.cpp ├── standard ├── CombinedInstaller.cmake ├── DefaultValue.cmake ├── GenerateVersion.cmake ├── InstallHeaders.cmake ├── ParseVersion.cmake ├── README.md ├── Standard.cmake ├── StandardProject.cmake ├── WixFile.wxs.in ├── cmake_package.cmake ├── standard-config.cmake.in ├── standard-configVersion.cmake.in ├── toolchain-android.cmake ├── toolchain-android32.cmake ├── toolchain-android64.cmake ├── toolchain-arm32.cmake ├── toolchain-arm64.cmake └── toolchain-rk1108.cmake ├── tests.cmake └── version.cmake /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/** 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/README.md -------------------------------------------------------------------------------- /cmake-modules/UseJavaEx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/cmake-modules/UseJavaEx.cmake -------------------------------------------------------------------------------- /cmake-modules/UseJavaSourceFileList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/cmake-modules/UseJavaSourceFileList.cmake -------------------------------------------------------------------------------- /contrib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(gtest-1.7.0) 2 | -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/CHANGES -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/CONTRIBUTORS -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/LICENSE -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/README -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /contrib/gtest-1.7.0/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/contrib/gtest-1.7.0/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/samples/CMakeLists.txt -------------------------------------------------------------------------------- /samples/Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/samples/Sample.cpp -------------------------------------------------------------------------------- /samples/Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/samples/Sample.java -------------------------------------------------------------------------------- /samples/Sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/samples/Sample.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/LeapC++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/LeapC++.cpp -------------------------------------------------------------------------------- /src/LeapC++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/LeapC++.h -------------------------------------------------------------------------------- /src/LeapC++.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/LeapC++.i -------------------------------------------------------------------------------- /src/LeapC++.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/LeapC++.rc.in -------------------------------------------------------------------------------- /src/LeapImplementationC++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/LeapImplementationC++.cpp -------------------------------------------------------------------------------- /src/LeapImplementationC++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/LeapImplementationC++.h -------------------------------------------------------------------------------- /src/LeapMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/LeapMath.h -------------------------------------------------------------------------------- /src/testing/ApiPropertyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/testing/ApiPropertyTest.cpp -------------------------------------------------------------------------------- /src/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/testing/CMakeLists.txt -------------------------------------------------------------------------------- /src/testing/IteratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/testing/IteratorTest.cpp -------------------------------------------------------------------------------- /src/testing/StaticTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/src/testing/StaticTest.cpp -------------------------------------------------------------------------------- /standard/CombinedInstaller.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/CombinedInstaller.cmake -------------------------------------------------------------------------------- /standard/DefaultValue.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/DefaultValue.cmake -------------------------------------------------------------------------------- /standard/GenerateVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/GenerateVersion.cmake -------------------------------------------------------------------------------- /standard/InstallHeaders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/InstallHeaders.cmake -------------------------------------------------------------------------------- /standard/ParseVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/ParseVersion.cmake -------------------------------------------------------------------------------- /standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/README.md -------------------------------------------------------------------------------- /standard/Standard.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/Standard.cmake -------------------------------------------------------------------------------- /standard/StandardProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/StandardProject.cmake -------------------------------------------------------------------------------- /standard/WixFile.wxs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/WixFile.wxs.in -------------------------------------------------------------------------------- /standard/cmake_package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/cmake_package.cmake -------------------------------------------------------------------------------- /standard/standard-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/standard-config.cmake.in -------------------------------------------------------------------------------- /standard/standard-configVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/standard-configVersion.cmake.in -------------------------------------------------------------------------------- /standard/toolchain-android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/toolchain-android.cmake -------------------------------------------------------------------------------- /standard/toolchain-android32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/toolchain-android32.cmake -------------------------------------------------------------------------------- /standard/toolchain-android64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/toolchain-android64.cmake -------------------------------------------------------------------------------- /standard/toolchain-arm32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/toolchain-arm32.cmake -------------------------------------------------------------------------------- /standard/toolchain-arm64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/toolchain-arm64.cmake -------------------------------------------------------------------------------- /standard/toolchain-rk1108.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/standard/toolchain-rk1108.cmake -------------------------------------------------------------------------------- /tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/LeapCxx/HEAD/tests.cmake -------------------------------------------------------------------------------- /version.cmake: -------------------------------------------------------------------------------- 1 | set(LeapC++_VERSION 0.1.0) 2 | --------------------------------------------------------------------------------