Я пытался построить простой проект cpp с родным gradle (cpp-приложение & плагины cpp-библиотеки) с успехом.
Я хотел бы использовать gradle-native для более сложных, но, к сожалению, у меня не получилось … Даже при попытке имитировать сэмплы на gradle-native / samples!
Я трачу на это часы 🙁
Вот что я хотел бы сделать:
server (cpp-application) -> depends on driver or factory
driver (cpp-library)
|---core (cpp-library)
|---alsa (cpp-libary with linux operating system) -> depends on core
|---asio (cpp-library with windows operating system) -> depends on core
|---factory (the resulting library which should use either linux or windows library) -> depends either on alsa, either on asio according to the operating system
или же
server (cpp-application) -> depends on driver
driver (cpp-library)
|---core (cpp-library)
|---alsa (cpp-libary with linux operating system) -> depends on core
|---asio (cpp-library with windows operating system) -> depends on core
|---src/ (the resulting library which should use either linux or windows library) -> depends either on alsa, either on asio according to the operating system
Есть кто-нибудь с решением, пожалуйста?
Спасибо !
С уважением
Задача ещё не решена.
Других решений пока нет …