Сборка приложения cpp с использованием родных плагинов cpp-application и cpp-library - PullRequest
0 голосов
/ 29 сентября 2018

Я попытался с успехом собрать простой проект cpp с родным языком (плагины cpp-application и cpp-library).

Я хотел бы использовать родной язык gradle для более сложного, но, к сожалению, яне удалось ... Даже при попытке имитировать сэмплы на 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

Есть кто-нибудь с решением, пожалуйста? Спасибо! С уважением

...