mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
15 lines
214 B
C++
15 lines
214 B
C++
#include "ObjA.hpp"
|
|
#include "ObjB.hpp"
|
|
#include "ObjC.hpp"
|
|
|
|
int main(int argv, char** args)
|
|
{
|
|
ObjA objA;
|
|
ObjB objB;
|
|
ObjC objC;
|
|
return 0;
|
|
}
|
|
|
|
// Header in global subdirectory
|
|
#include "subB/moc_SubObjB.cpp"
|