Skip to content

Commit

Permalink
Initial upload
Browse files Browse the repository at this point in the history
  • Loading branch information
gecko0307 committed Jul 25, 2019
1 parent daa870e commit 3c59641
Show file tree
Hide file tree
Showing 15 changed files with 2,311 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Static libraries
*.a
*.lib

# Executables
*.exe

# DUB
.dub
docs.json
dub.selections.json
__dummy.html
__test__library__
tests
docs/

# Code coverage
*.lst

# Backup files
*~

# Editor files
.vs

26 changes: 26 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Copyright (c) 2019 Timur Gafarov

Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:

The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.

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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# bindbc-newton
Dynamic binding to Newton Dynamics
BindBC binding to [Newton Dynamics](https://github.com/MADEAPPS/newton-dynamics) 3.14.
31 changes: 31 additions & 0 deletions dub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "bindbc-newton",
"description": "Dynamic binding to Newton Dynamics",
"homepage": "https://github.com/gecko0307/bindbc-newton",
"license": "Boost",
"authors": [
"Timur Gafarov"
],

"dependencies": {
"bindbc-loader": "~>0.2.1"
},

"importPaths": ["src"],
"sourcePaths": ["src"],

"buildRequirements":[
"allowWarnings"
],

"configurations": [
{
"name": "library",
"targetType": "library"
}
],

"copyFiles-windows-x86" : ["lib/x86/*.dll", "plugins/x86/*.dll"],
"copyFiles-windows-x86_64" : ["lib/x64/*.dll", "plugins/x64/*.dll"]
}

Binary file added lib/x64/newton.dll
Binary file not shown.
Binary file added lib/x86/newton.dll
Binary file not shown.
Binary file added plugins/x64/dgNewtonAvx.dll
Binary file not shown.
Binary file added plugins/x64/dgNewtonAvx2.dll
Binary file not shown.
Binary file added plugins/x64/dgNewtonSse4.2.dll
Binary file not shown.
Binary file added plugins/x86/dgNewtonAvx.dll
Binary file not shown.
Binary file added plugins/x86/dgNewtonAvx2.dll
Binary file not shown.
Binary file added plugins/x86/dgNewtonSse4.2.dll
Binary file not shown.
1,779 changes: 1,779 additions & 0 deletions src/bindbc/newton/binddynamic.d

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions src/bindbc/newton/package.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:
The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.
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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/

module bindbc.newton;

public import bindbc.newton.types;
public import bindbc.newton.binddynamic;
Loading

0 comments on commit 3c59641

Please sign in to comment.