initial; broken
This commit is contained in:
10
cosets/CMakeLists.txt
Normal file
10
cosets/CMakeLists.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
project(cosets)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
src/main.cpp)
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PRIVATE
|
||||
include)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE
|
||||
glad glm glfw)
|
||||
11
cosets/include/util.h
Normal file
11
cosets/include/util.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include<string>
|
||||
|
||||
#include <boost/format.hpp>
|
||||
|
||||
using namespace std;
|
||||
|
||||
std::string greeting(std::string target) {
|
||||
|
||||
}
|
||||
9
cosets/src/main.cpp
Normal file
9
cosets/src/main.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
cout << "hello, world!\n";
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user