You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
324 B
16 lines
324 B
#include "A.hpp"
|
|
#include "WithSubpackagesA_config.h"
|
|
|
|
#include "SimpleCxx_HelloWorld.hpp"
|
|
|
|
std::string WithSubpackages::getA() {
|
|
return std::string("A");
|
|
}
|
|
|
|
std::string WithSubpackages::depsA() {
|
|
return "SimpleCxx "+SimpleCxx::deps();
|
|
}
|
|
|
|
int WithSubpackages::specialValue() {
|
|
return WITHSUBPACKAGESA_SPECIAL_VALUE;
|
|
}
|
|
|