Compare commits
2 Commits
07070dd2d4
...
06d7148408
Author | SHA1 | Date | |
---|---|---|---|
06d7148408 | |||
33875cb58b |
6
external/toxcore/CMakeLists.txt
vendored
6
external/toxcore/CMakeLists.txt
vendored
@ -12,7 +12,11 @@ add_subdirectory(./c-toxcore)
|
||||
# the sad case
|
||||
add_library(toxcore INTERFACE)
|
||||
|
||||
target_link_libraries(toxcore INTERFACE toxcore_static)
|
||||
if (TARGET toxcore_static)
|
||||
target_link_libraries(toxcore INTERFACE toxcore_static)
|
||||
else()
|
||||
target_link_libraries(toxcore INTERFACE toxcore_shared)
|
||||
endif()
|
||||
|
||||
# HACK: "install" api headers into binary dir
|
||||
configure_file(
|
||||
|
@ -293,7 +293,7 @@ bool renderContactBig(
|
||||
ImGui::TextUnformatted(slt->text.c_str(), slt->text.c_str() + slt->first_line_length);
|
||||
ImGui::PopStyleColor();
|
||||
} else {
|
||||
ImGui::TextDisabled(""); // or dummy?
|
||||
ImGui::TextDisabled(" "); // or dummy?
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user