我必须合并两个代码(TestOne.cpp + TestTwo.cpp),其中一个已经有了makefile (TestOne.cpp),但另一个已经只包含.h,每个.h都没有cpp,所有代码都在.h (TestTwo.cpp)
对于makefile来说,它是这样的,它可以工作:
{
[
{ id: "AL01",
list: [
{ speed : 5
value : 10} ,
{ speed : 7
value : 15}
]
},
{ id: "AB01",
list: [
{ speed : 20
value : 1} ,
{ speed : 8
value : 10}
]
}
]
}
另一个(TestTwo.cpp)它也可以通过这样的编译工作:
{[ { id: "AL01", speed: 12, value: 25}, { id: "AB01", speed: 28, value: 11}]}
我必须使用第一个创建一个新的makefile并引入seconde commande g ++ ...我该怎么办?