How to use Zep with Mahi Gui? #59
-
I'm trying to integrate Zep with Mahi-Gui, but unfortunately I'm too inexperienced with cmake to figure out how to do it. Any tips? Here's what I have so far include(FetchContent)
FetchContent_Declare(mahi-gui GIT_REPOSITORY https://github.com/mahilab/mahi-gui.git)
FetchContent_MakeAvailable(mahi-gui)
FetchContent_Declare(Zep GIT_REPOSITORY https://github.com/Rezonality/zep.git)
FetchContent_MakeAvailable(Zep)
project(catCad)
add_subdirectory(src)
add_executable(catCad "src/main.cpp")
target_link_libraries(catCad mahi::gui Zep::Zep) My output is
Not sure how to approach this. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I'm afraid I'm not around for a few hours, but my first reaction here is that you need to set options to just get the library, when calling CMake: |
Beta Was this translation helpful? Give feedback.
-
I guess I never got around to this one. If anyone does this, do let me know. The integration example for Zep should now help.... |
Beta Was this translation helpful? Give feedback.
I guess I never got around to this one. If anyone does this, do let me know. The integration example for Zep should now help....