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.
17 lines
324 B
17 lines
324 B
2 years ago
|
#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;
|
||
|
}
|