Skip to content

Commit

Permalink
Fix CMakeLists.txt, Line.hpp (#15)
Browse files Browse the repository at this point in the history
- Add missing headers in both files
  • Loading branch information
Dead-Deus authored Sep 13, 2021
1 parent f61d574 commit b2c3c49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ set(CANDLE_SRC

# Static library target
add_library(Candle-s STATIC ${CANDLE_SRC})
target_include_directories(Candle-s PRIVATE include)
target_include_directories(Candle-s PUBLIC include)
target_link_libraries(Candle-s sfml-graphics)

option(RADIAL_LIGHT_FIX "Use RadialLight fix for errors with textures" OFF)
Expand Down
2 changes: 2 additions & 0 deletions include/Candle/geometry/Line.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#ifndef __SFML_UTIL_GEOMETRY_LINE_HPP__
#define __SFML_UTIL_GEOMETRY_LINE_HPP__

#include <limits>

#include <SFML/System/Vector2.hpp>

#include "Candle/geometry/Vector2.hpp"
Expand Down

0 comments on commit b2c3c49

Please sign in to comment.