CMake/Tests/CMakeCommands/target_link_libraries/depB.cpp

12 lines
82 B
C++

#include "depB.h"
#include "depA.h"
int DepB::foo()
{
DepA a;
return 0;
}