uibk_703807-Advanced-CXX/cmake-example/apps/myapp.cpp

11 lines
139 B
C++
Raw Permalink Normal View History

2020-11-26 21:56:26 +01:00
#include <cstdlib>
#include <iostream>
#include "mylib/foo.hpp"
int main()
{
std::cout << mylib::foo() << "\n";
return EXIT_SUCCESS;
}