├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | **/.idea/workspace.xml 4 | **/.idea/tasks.xml 5 | 6 | # android makefiles 7 | GypAndroid.mk 8 | support/*.target.mk 9 | *.target.mk 10 | GypAndroid.mk 11 | 12 | # gyp 13 | deps/gyp 14 | 15 | # android build artifacts 16 | libs/ 17 | obj/ 18 | 19 | # ios build artifacts 20 | build/ 21 | build_ios/ 22 | 23 | # xcode stuff 24 | project.xcworkspace 25 | *.xccheckout 26 | DerivedData 27 | *.xcuserdatad/ 28 | 29 | # djinni output directories 30 | djinni-output-temp/ 31 | 32 | # intellij-plugin build artifact 33 | intellij-plugin/djinni.jar 34 | 35 | # profiling output 36 | callgrind.out.* 37 | 38 | # (gradle generated) eclipse files 39 | .project 40 | .settings/ 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Djinni is still alive and active developed! 2 | 3 | 4 | **The monolithic djinni repository has been split into extra repositories for each component.** 5 | 6 | * [generator](https://github.com/cross-language-cpp/djinni-generator) 7 | * [support-lib](https://github.com/cross-language-cpp/djinni-support-lib) 8 | * [intellij-plugin](https://github.com/cross-language-cpp/djinni-intellij-plugin) 9 | 10 | Please **[read here about the reasons](https://github.com/cross-language-cpp/djinni/issues/17)** for this decision. 11 | 12 | Additionally there is now also a [djinni asdf plugin](https://github.com/cross-language-cpp/asdf-djinni), and further new repositories might follow. 13 | 14 | 15 | **Please visit also https://djinni.xlcpp.dev to get all information.** 16 | --------------------------------------------------------------------------------