Change game name to ITER
This commit is contained in:
parent
37736f88e2
commit
0827103515
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Reference in a new issue