-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
if python, add test_engine specific lib for python (imgui_test_engine…
…_py)
- Loading branch information
Showing
4 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
Submodule imgui_test_engine
updated
4 files
+4 −4 | imgui_test_engine/imgui_te_coroutine.cpp | |
+4 −4 | imgui_test_engine/imgui_te_engine.cpp | |
+2 −2 | imgui_test_engine/imgui_te_python_gil.cpp | |
+2 −2 | imgui_test_engine/imgui_te_python_gil.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
add_executable(hello_imgui_tests hello_imgui_ini_settings_test.cpp hello_imgui_tests_main.cpp) | ||
target_link_libraries(hello_imgui_tests PRIVATE hello_imgui) | ||
if (HELLOIMGUI_WITH_TEST_ENGINE) | ||
target_link_libraries(hello_imgui_tests PRIVATE imgui_test_engine) | ||
endif() |