mirror of
1
0
Fork 0
modern-cmake/examples/simple-project/simple_example.cpp

14 lines
264 B
C++

// This is an example file as part of Modern-CMake
#include "simple_lib.hpp"
#include <iostream>
int main() {
std::cout << "Simple example C++ compiled correctly and ran." << std::endl;
std::cout << simple_lib_function() << std::endl;
return 0;
}