Skip to content

Commit

Permalink
Include the root directory in Android CMakeLists.txt (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaOrtner authored Aug 25, 2024
2 parents afa867b + c47f81e commit 455687b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion platform/android/project/engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ project(RebelEngine)
set(ROOT_DIR ../../../..)
file(GLOB_RECURSE SOURCES ${ROOT_DIR}/*.c**)
file(GLOB_RECURSE HEADERS ${ROOT_DIR}/*.h**)
add_executable(${PROJECT_NAME} ${SOURCES} ${HEADERS})
add_library(${PROJECT_NAME} ${SOURCES} ${HEADERS})
target_include_directories(${PROJECT_NAME} PUBLIC ${ROOT_DIR})

0 comments on commit 455687b

Please sign in to comment.