1
0
mirror of synced 2024-06-06 04:38:02 +02:00
modern-cmake/examples/simple-project/simple_example.cpp
2019-02-21 22:59:33 +01:00

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;
}