Eclipse-CDT: что лучший способ состоит в том, чтобы добавить сделанный на заказ шаг?

Часто Вы используете ограничения в базе данных для обеспечения данных, чтобы быть "уникальными" в основанном на данных смысле.

Относительно "изоморфизмов" я думаю, что Вы самостоятельно, т.е. запись кода Вашего сам. Если в базе данных Вы могли бы использовать триггер.

5
задан Alex Black 8 July 2009 в 15:40
поделиться

3 ответа

Я получил это хорошо, добавив "Builder" типа "Program".

Щелкните правой кнопкой мыши проект, выберите "Свойства", "нажмите кнопку" Создать ..., добавьте расположение файл, который вы хотите выполнить, а также любые аргументы командной строки.

3
ответ дан 14 December 2019 в 13:44
поделиться

Relatively early in our projects' lifetime, I felt like I was running into too many limitations of Eclipse CDT's managed builds, so I switched to Make.

This isn't as bad as it might sound; Eclipse CDT integrates well with make (running it with the configuration you chose and parsing its results), and you can use Eclipse CDT's generated makefiles as a starting point.

Once you're using make, you can easily add a custom build step.

1
ответ дан 14 December 2019 в 13:44
поделиться

I'm using cmake with eclipse cdt
it provides an generator to generate the whole eclipse cdt project

you just have to setup your CMakeLists.txt file and then run the following command in your project directory:
cmake -G"Eclipse CDT4 - Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug .
after that eclipse uses the cmake generated make file and regenerates it when you change the CMakeLists.txt

there exists tutorial for cmake and cdt

you have to check whether cmake suits your needs

2
ответ дан 14 December 2019 в 13:44
поделиться
Другие вопросы по тегам:

Похожие вопросы: