How to build SCons projects with Eclipse CDT?

前端 未结 6 1986
太阳男子
太阳男子 2021-01-31 10:14

We have a fairly large C/C++ project using scons for the building. I\'d like to go at an attempt to build this through Eclipse-CDT. Anyone have any experience with this and can

6条回答
  •  隐瞒了意图╮
    2021-01-31 11:11

    You can use a Makefile that simply delegates the important targets to scons

    .PHONY: all clean install
    default:    all
    all:    
        scons
    clean:
        scons -c
    install:
        scons install
    

    Then it is possible to use "Standard Make C Project" out of the box.

提交回复
热议问题