Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/cmake/find_package/bar.cpp
6169 views
1
// Must be a standard C++ header to implicitly test CMake not emitting -isystem for some imported targets: see #17132
2
#include <iostream>
3
#include <foo.h>
4
5
int main() {
6
std::cout << "foo: " << foo() << std::endl;
7
return 0;
8
}
9
10