Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/FindQCustomPlot.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


find_library(QCustomPlot_LIBRARY qcustomplot)
find_library(QCustomPlot_LIBRARY NAMES qcustomplot qcustomplot-qt5)
set(QCustomPlot_LIBRARIES "${QCustomPlot_LIBRARY}")

find_path(QCustomPlot_INCLUDE_DIR qcustomplot.h)
Expand Down
4 changes: 2 additions & 2 deletions cmake/FindQHexEdit.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


find_library(QHexEdit_LIBRARY qhexedit)
find_library(QHexEdit_LIBRARY NAMES qhexedit qhexedit-qt5)
set(QHexEdit_LIBRARIES "${QHexEdit_LIBRARY}")

find_path(QHexEdit_INCLUDE_DIR qhexedit.h)
find_path(QHexEdit_INCLUDE_DIR qhexedit.h PATH_SUFFIXES qhexedit2)
set(QHexEdit_INCLUDE_DIRS "${QHexEdit_INCLUDE_DIR}")

include(FindPackageHandleStandardArgs)
Expand Down