Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
CMakeCommands
/
target_sources
/
main.cpp
blob: 622771cb905cd7e8310b821ccd3ab892f48f73cb [
file
] [
log
] [
blame
]
#include
<iostream>
int
empty_1
();
int
subdir_empty_1
();
int
subdir_empty_2
();
int
main
()
{
int
e1
=
empty_1
();
int
se1
=
subdir_empty_1
();
int
se2
=
subdir_empty_2
();
std
::
cout
<<
e1
<<
" "
<<
se1
<<
" "
<<
se2
<<
std
::
endl
;
return
0
;
}