https://github.com/Kitware/CMake
Raw File
Tip revision: 3c9dec0bdc11a69afcbaa93a0e61dc71cddd5491 authored by Brad King on 29 March 2019, 13:22:46 UTC
CMake 3.14.1
Tip revision: 3c9dec0
main.cpp
#include "IncA.hpp"
#include "IncB.hpp"
#include "StyleA.hpp"
#include "StyleB.hpp"
#include <iostream>

int main(int argv, char** args)
{
  StyleA styleA;
  StyleB styleB;
  IncA incA;
  IncB incB;

  // Test the TOKEN definition passed on the command line
  std::string token(TOKEN);
  std::cout << "std::string(TOKEN): \"" << token << "\"\n";
  return (token == "hello;") ? 0 : -1;
}
back to top