diff --git a/.gitignore b/.gitignore index b6f4979..2e98844 100644 --- a/.gitignore +++ b/.gitignore @@ -74,11 +74,6 @@ software/.cache/ story-editor/.idea/ -story-editor/buildxcode/ - -story-editor/cmake-build-debug/ - -story-editor/build-win32/ build-story-editor-Desktop_Qt_GCC_64bit-Debug/ @@ -104,4 +99,11 @@ story-player-raylib/bin/story-player.data story-player-raylib/bin/story-player.js story-player-raylib/bin/story-player.wasm -core/chip32/tests/build \ No newline at end of file +core/chip32/tests/build +story-editor/build-linux +story-editor/buildxcode/ +story-editor/build-win32/ +story-editor/cmake-build-debug/ +story-editor/.flatpak-builder +story-editor/flatpak_build/ +story-editor/AppDir/ diff --git a/README.md b/README.md index bd124a8..45b476e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,11 @@ # Open Story Teller (OST) -[![continous_build](https://github.com/arabine/open-story-teller/actions/workflows/build.yml/badge.svg)](https://github.com/arabine/open-story-teller/actions/workflows/build.yml) + +| Job | Status | +|---|---| +| Story Editor | [![continous_build](https://github.com/arabine/open-story-teller/actions/workflows/story_editor.yml/badge.svg)](https://github.com/arabine/open-story-teller/actions/workflows/story_editor.yml) | + + Open Story Teller is an Open Source project to provide guidelines and software to build your own story teller box (electronics, mechanical). diff --git a/story-editor/CMakeLists.txt b/story-editor/CMakeLists.txt index 15d49e6..1cece83 100644 --- a/story-editor/CMakeLists.txt +++ b/story-editor/CMakeLists.txt @@ -49,6 +49,11 @@ add_subdirectory(libs/ImGuiFileDialog) # SDL3 MIXER # ========================================================================================================================= +set(CIVETWEB_BUILD_TESTING OFF) +set(CIVETWEB_ENABLE_SERVER_EXECUTABLE OFF) +set(CIVETWEB_ENABLE_CXX ON) +set(CIVETWEB_ENABLE_WEBSOCKETS ON) +set(CIVETWEB_ENABLE_ASAN OFF) add_subdirectory(externals/civetweb EXCLUDE_FROM_ALL) add_subdirectory(externals/curl EXCLUDE_FROM_ALL) @@ -242,7 +247,7 @@ if(UNIX) SDL3_mixer::SDL3_mixer SDL3::SDL3 CURL::libcurl - civetweb::civetweb-cpp + civetweb-cpp pthread OpenGL::GL dl