Really cool UI library!
I built and test it on my system but had two problems occur:
- I have to change the CMakeList.txt like the following:
configure glfw
find_package(GLFW REQUIRED)
if(GLFW_FOUND)
include_directories(${GLFW_INCLUDE_DIR})
set(LIBS ${GLFW_LIBRARIES} -lXcursor -lXxf86vm -lpthread -lXinerama -lXi -lXrandr ${LIBS} )
endif()
or I will get some run time errors such as 'xxx function not defined.' (The .so and samples are generated) and I don't know why.
- My system is Ubuntu 14.04. When I use the file-selector dialog and open any directory with some Chinese(中文) code, all font goes wrong, something worse than ♢♢♢, rendering failed totally.
Really cool UI library!
I built and test it on my system but had two problems occur:
configure glfw
find_package(GLFW REQUIRED)
if(GLFW_FOUND)
include_directories(${GLFW_INCLUDE_DIR})
set(LIBS ${GLFW_LIBRARIES} -lXcursor -lXxf86vm -lpthread -lXinerama -lXi -lXrandr ${LIBS} )
endif()
or I will get some run time errors such as 'xxx function not defined.' (The .so and samples are generated) and I don't know why.