repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated formatting of documentation plus a little reorganization.
[cmake.git]
/
Tests
/
NewlineArgs
/
cxxonly.cxx
blob
05d55e4ef2a4a20d6fe64a29be6f986f891ee731
1
#include
"libcxx1.h"
2
#include
"libcxx2.h"
3
4
#include <stdio.h>
5
6
int
main
()
7
{
8
if
(
LibCxx1Class
::
Method
() !=
2.0
)
9
{
10
printf
(
"Problem with libcxx1
\n
"
);
11
return
1
;
12
}
13
#ifdef TEST_FLAG_3
14
return
0
;
15
#else
16
printf
(
"Problem with libcxx2.h include dir probably!
\n
"
);
17
return
1
;
18
#endif
19
}