annotate doc/manual/CMakeLists.txt @ 611:d94b053311a7

test/plain_c++: - refactored to share code - extended to treat default this calls and explicitly as cdecl declared ones, separately - prev point fixes implicitly on x86 a wrong dcMode setting (assumed that cdecl for methods would default to the native this call convention, but actually does not, applies cdecl verbatim) - extended aggr tests to also test explicit cdecl as well as MS thiscalls on x86 - simplified
author Tassilo Philipp
date Thu, 29 Sep 2022 11:47:54 +0200
parents 3e629dc19168
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
1 find_package(LATEX)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
2 if(PDFLATEX_COMPILER)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
3 add_custom_command(
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
4 OUTPUT manual.pdf
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
5 COMMAND ${PDFLATEX_COMPILER}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
6 ARGS manual.tex
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
7 DEPENDS manual.tex
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
8 )
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
9 file(GLOB CLEAN_FILES *.aux *.log *.lof *.lol *.lot *.out *.toc)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
10 set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${CLEAN_FILES}")
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
11 endif()
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
12 add_custom_target(manual ALL echo DEPENDS manual.pdf)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
13