mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-08 00:40:02 +01:00
Compilation and snap with ICU libs
This commit is contained in:
@@ -91,7 +91,6 @@ set(THREAD_LIBRARY Threads::Threads)
|
|||||||
find_package(PNG REQUIRED)
|
find_package(PNG REQUIRED)
|
||||||
set(PNG_LIBRARY PNG::PNG)
|
set(PNG_LIBRARY PNG::PNG)
|
||||||
|
|
||||||
#set(ICU_ROOT "/usr/local/Cellar/icu4c/67.1")
|
|
||||||
find_package(ICU REQUIRED COMPONENTS i18n io uc)
|
find_package(ICU REQUIRED COMPONENTS i18n io uc)
|
||||||
macro_log_feature(ICU_FOUND "ICU" "International Components for Unicode" "http://site.icu-project.org" TRUE)
|
macro_log_feature(ICU_FOUND "ICU" "International Components for Unicode" "http://site.icu-project.org" TRUE)
|
||||||
|
|
||||||
|
|||||||
@@ -58,8 +58,8 @@ and (recursively) clone all the internal git Dependencies.
|
|||||||
|
|
||||||
**Ubuntu**
|
**Ubuntu**
|
||||||
|
|
||||||
apt-get install build-essential cmake libpng-dev libglfw3-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
|
apt-get install build-essential cmake libpng-dev libglfw3-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libicu-dev
|
||||||
|
|
||||||
**OSX with Brew**
|
**OSX with Brew**
|
||||||
|
|
||||||
brew install cmake libpng glfw gstreamer gst-libav gst-plugins-bad gst-plugins-base gst-plugins-good gst-plugins-ugly
|
brew install cmake libpng glfw gstreamer gst-libav gst-plugins-bad gst-plugins-base gst-plugins-good gst-plugins-ugly icu4c
|
||||||
|
|||||||
2
View.cpp
2
View.cpp
@@ -503,7 +503,7 @@ View::Cursor MixingView::grab (Source *s, glm::vec2 from, glm::vec2 to, std::pai
|
|||||||
if (s->active()) {
|
if (s->active()) {
|
||||||
info << "Alpha " << std::fixed << std::setprecision(3) << s->blendingShader()->color.a;
|
info << "Alpha " << std::fixed << std::setprecision(3) << s->blendingShader()->color.a;
|
||||||
// else if ( Mixer::manager().concealed(s) )
|
// else if ( Mixer::manager().concealed(s) )
|
||||||
// info << "Stashed";
|
// info << "Stashed";q
|
||||||
if (s->blendingShader()->color.a > 0.f)
|
if (s->blendingShader()->color.a > 0.f)
|
||||||
info << " " << ICON_FA_EYE;
|
info << " " << ICON_FA_EYE;
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ parts:
|
|||||||
- libglfw3-dev
|
- libglfw3-dev
|
||||||
- libgstreamer1.0-dev
|
- libgstreamer1.0-dev
|
||||||
- libgstreamer-plugins-base1.0-dev
|
- libgstreamer-plugins-base1.0-dev
|
||||||
|
- libicu-dev
|
||||||
stage-packages:
|
stage-packages:
|
||||||
- zenity
|
- zenity
|
||||||
- libpng16-16
|
- libpng16-16
|
||||||
|
|||||||
Reference in New Issue
Block a user