https://github.com/Kitware/CMake
Raw File
Tip revision: b243367b360065dd9734d86c20918202e5d7145b authored by Brad King on 01 June 2022, 15:15:18 UTC
CMake 3.22.5
Tip revision: b243367
zot.cxx
#include <stdio.h>
#include <zot.hxx>
#include <zot_custom.hxx>

const char* zot_macro_dir_f();
const char* zot_macro_tgt_f();
const char* zot_pch_f();

int main()
{
  printf("[%s] [%s] [%s] [%s] [%s]\n", zot, zot_custom, zot_macro_dir_f(),
         zot_macro_tgt_f(), zot_pch_f());
  fflush(stdout);
  return 0;
}
back to top