-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc5fb8f
commit 2868106
Showing
16 changed files
with
75 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
build/ | ||
generated/ | ||
project/* | ||
!project/projectdefinition.txt | ||
*.cdl64 | ||
*.exp | ||
*.lib | ||
*.dylib | ||
*.xlib | ||
*.profraw | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[submodule "craftr/modules/maxon.c4d"] | ||
path = craftr/modules/maxon.c4d | ||
url = https://github.com/craftr-build/NiklasRosenstein.maxon.c4d.git | ||
[submodule "_vendor/aaocean"] | ||
path = _vendor/aaocean | ||
url = [email protected]:NiklasRosenstein/mirror-aaOcean.git | ||
[submodule "craftr/net.maxon.c4d"] | ||
path = craftr/net.maxon.c4d | ||
url = [email protected]:craftr-build/net.maxon.c4d.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import * from 'craftr' | ||
project('com.niklasrosenstein.c4d-aaOcean', '1.0') | ||
link_module('./craftr/net.maxon.c4d') | ||
import c4d from 'net.maxon.c4d' | ||
|
||
includes = [ | ||
'res', | ||
'_vendor/aaocean/externals/aaOcean/src', | ||
'_vendor/aaocean/externals/helpers' | ||
] | ||
|
||
target('aaOcean') | ||
depends(['net.maxon.c4d:addons']) | ||
properties({ | ||
'cxx.srcs': ['source/aaOceanC4D.cpp'], | ||
'cxx.type': 'library', | ||
'cxx.includes': includes, | ||
'cxx.enableOpenmp': True, | ||
'c4d.SourceProcessor': False | ||
}) | ||
c4d.build() | ||
|
||
target('plugin') | ||
depends(['net.maxon.c4d:addons']) | ||
depends([':aaOcean']) | ||
properties({ | ||
'cxx.srcs': ['source/main.cpp', 'source/aaOceanDeformer.cpp', 'source/aaOCeanShader.cpp'], | ||
'cxx.includes': includes, | ||
'cxx.enableOpenmp': True, | ||
'cxx.productDirectory': '.', | ||
'cxx.productName': 'c4d-aaOcean' + c4d.plugin_suffix | ||
}) | ||
c4d.build() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Submodule maxon.c4d
deleted from
1a0649
Submodule net.maxon.c4d
added at
7be316
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ModuleId=com.niklasrosenstein.c4d-aaOcean | ||
Platform=Win64;OSX | ||
Type=DLL | ||
stylecheck=false | ||
APIS=cinema.framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.