Skip to content

Commit

Permalink
see if fixes finding debug
Browse files Browse the repository at this point in the history
  • Loading branch information
willwade committed Sep 14, 2024
1 parent 48c77e9 commit 64f7af4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ project(pysapitts)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)

find_package(Python3 3.11 REQUIRED COMPONENTS Development.Embed)
find_package(Python3 REQUIRED COMPONENTS Development.Embed)
target_link_libraries(pysapittsengine PRIVATE Python3::Python)

include(FetchContent)

FetchContent_Declare(fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
GIT_TAG master
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
GIT_TAG master
)
FetchContent_MakeAvailable(fmt)

Expand Down

0 comments on commit 64f7af4

Please sign in to comment.