You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ The Automatic Component Toolkit is an open source project.
3
3
4
4
Contributions are welcome and we are looking for people that can improve existing language bindings or create new bindings or implementation stubs.
5
5
6
-
You can also contribute by reporting bugs in the [Issue tracker](https://git.autodesk.com/netfabb/AutomaticComponentToolkit/issues), helping review pull requests, participate in discussions about issues and more.
6
+
You can also contribute by reporting bugs in the [Issue tracker](../../issues), helping review pull requests, participate in discussions about issues and more.
7
7
8
8
## Filing issues
9
9
1. When filing an issue to report errors or problems, make sure to answer these five questions:
@@ -19,7 +19,9 @@ You can also contribute by reporting bugs in the [Issue tracker](https://git.aut
19
19
## Submitting a pull request
20
20
When ready to contribute, fork this repository and submit a pull request that references the issue it resolves. Be sure to include a clear and detailed description of the changes you've made so that we can verify them and eventually merge.
21
21
22
-
__NOTE___Before your code can be accepted into the project you must also sign the Contributor License Agreement (CLA). Please contact Martin Weismann [email protected] for a copy of the CLA._
22
+
ACT follows the [git-flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) branching model. New developments are integrated into the [develop](../../tree/develop)-branch. ACT's maintainers will create releases from the develop-branch when appropriate.
23
+
24
+
__NOTE___Before your code can be accepted into the project you must also sign the Contributor License Agreement (CLA). Please contact the maintainers via [email protected] for a copy of the CLA._
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,15 @@ calling the functions exported by your component via the thin C89-API.
22
22
A consumer of your component only needs to include the language binding relevant for them and not worry about the C89 interface or the underlying implementation.
23
23
24
24
## How to use ACT:
25
-
1) Download the precompiled binaries of from one of the [releases](https://github.com/Autodesk/AutomaticComponentToolkit/releases)
25
+
1) Download the precompiled binaries of from one of the [releases](../../releases)
26
26
2) Write an interface description file `idl_file.xml` for your desired component
27
27
3) Generate implementation stubs and language bindings for your component:
28
28
<br/>`act.exe idl_file.xml`
29
29
4) Integrate the generated code in your project
30
30
31
31
You are probably best of starting of with our extensive [Tutorial](Examples/Primes/Tutorial.md).
32
32
33
-
Alternatively to 1) build act from source:
33
+
Alternatively to 1) build ACT from source ([master](../../tree/master) for a released vesion, [develop](../../tree/develop) for the latest developments):
34
34
1. Install go https://golang.org/doc/install
35
35
2. Build automaticcomponenttoolkit.go:
36
36
<br/>`Build\build.bat` on Windows or <br/>`Build\build.sh` on Unix
0 commit comments