Skip to content

Commit

Permalink
Make directories independent of a root project
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmacha committed Jun 1, 2024
1 parent 335a307 commit 1aa5276
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ option(BUILD_GOTHIC_API "Build gothic-api as an interface target" ON)

set(CMAKE_CXX_STANDARD 23)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
set(UNION_API_SRC_DIR "${CMAKE_SOURCE_DIR}/union-api" CACHE STRING "The directory containing Union API source")
set(GOTHIC_API_SRC_DIR "${CMAKE_SOURCE_DIR}/gothic-api" CACHE STRING "The directory containing Gothic API source")
set(UNION_API_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/union-api" CACHE STRING "The directory containing Union API source")
set(GOTHIC_API_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/gothic-api" CACHE STRING "The directory containing Gothic API source")

add_subdirectory(cmake)

0 comments on commit 1aa5276

Please sign in to comment.