waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

test.cpp (242B)


      1 #include <iostream>
      2 #include "MyLib/TestClass.h"
      3 #include "config.h"
      4 
      5 int main(int argc, char const *argv[])
      6 {
      7 	TestClass a;
      8 	std::cout << a.message() << std::endl;
      9   std::cout << "Number should be 10: " << NUMBER << std::endl;
     10 
     11 
     12 	return 0;
     13 }