diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e2654a..3822fd1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -92,13 +92,13 @@ target_include_directories(Engine PRIVATE ${GLM_INCLUDE_DIRS}) -add_executable(Graph +add_executable(ITER src/main.cpp) -target_link_libraries(Graph +target_link_libraries(ITER PRIVATE Engine) -add_shaders(Graph +add_shaders(ITER shaders/mesh.vert shaders/mesh.frag shaders/post.vert @@ -117,7 +117,7 @@ add_shaders(Graph shaders/sobel.vert shaders/sobel.frag) -add_data(Graph +add_data(ITER data/suzanne.obj data/test.cim data/bokeh.png diff --git a/src/main.cpp b/src/main.cpp index 71d94d9..7f973b6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -113,7 +113,7 @@ int main(int argc, char* argv[]) { if(argc > 3 && strcmp(argv[2], "--record") == 0) record = true; - window = SDL_CreateWindow("Graph", + window = SDL_CreateWindow("ITER", windowX, windowY, windowWidth,