Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeCommands/target_sources/main.cpp
3153 views
1
#include <iostream>
2
3
int empty_1();
4
int subdir_empty_1();
5
int subdir_empty_2();
6
7
int main()
8
{
9
int e1 = empty_1();
10
int se1 = subdir_empty_1();
11
int se2 = subdir_empty_2();
12
13
std::cout << e1 << " " << se1 << " " << se2 << std::endl;
14
15
return 0;
16
}
17
18