Skip to content

Commit

Permalink
Updated CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
42yeah committed Feb 28, 2020
1 parent 91b1069 commit 0bd603c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Shear3D/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ endmacro(configure_files)

# Include the includes
include_directories(${PROJECT_SOURCE_DIR}/Includes)
add_executable(Shear3D main.cpp tests.cpp Program.cpp Pass.cpp Game.cpp Camera.cpp Model.cpp Texture.cpp Object.cpp Monster.cpp Item.cpp)
add_executable(Shear3D main.cpp tests.cpp Program.cpp Pass.cpp Game.cpp Camera.cpp Model.cpp Texture.cpp Object.cpp Monster.cpp Item.cpp Menu.cpp)

target_link_libraries(Shear3D ImGui glfw)
if (WIN32)
target_link_libraries(Shear3D -static)
endif()
file(COPY ${PROJECT_SOURCE_DIR}/Assets DESTINATION ${CMAKE_CURRENT_BINARY_DIR})

0 comments on commit 0bd603c

Please sign in to comment.