Adding header files to their own folder in the project.

This commit is contained in:
Ólafur Waage 2021-09-06 14:51:01 +02:00
parent b55e654cce
commit aa22b91e8b
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
find_package(OpenGL REQUIRED COMPONENTS OpenGL GLX)
endif ()
file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp")
file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp" "*.hpp")
add_library(libpacman ${sources})