Skip to content

Commit

Permalink
Added cstring include
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliom committed Jul 23, 2024
1 parent c86c054 commit 470adbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ LibDebug/
LibRelease/

# Cmake
build/
BasicRenderer/build

# Visual Studio 2015 database file
Expand Down
2 changes: 1 addition & 1 deletion BasicRenderer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ file(GLOB SOURCES "${PROJECT_SOURCE_DIR}/source/*.cpp" "${PROJECT_SOURCE_DIR}/in
add_executable(${PROJECT_NAME} ${SOURCES})
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/include)

target_link_libraries(${PROJECT_NAME} PUBLIC BasicCppLibrary)
target_link_libraries(${PROJECT_NAME} PUBLIC BasicCppLibrary m)
add_dependencies(${PROJECT_NAME} BasicCppLibrary)

# ------ Google Test ----- #
Expand Down
1 change: 1 addition & 0 deletions BasicRenderer/source/FrameBuffer.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "FrameBuffer.h"
#include <cmath>
#include <cstring>

namespace BasicRenderer
{
Expand Down

0 comments on commit 470adbe

Please sign in to comment.