-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor snomae version building and create QT .pc/.prl files.
- Loading branch information
Showing
3 changed files
with
46 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
prefix=@prefix@ | ||
exec_prefix=${prefix} | ||
libdir=${exec_prefix}@libdir@ | ||
includedir=${prefix}/include | ||
qt_config=lex yacc warn_on uic resources qt release incremental link_prl def_files_disabled exceptions no_mocdepend stl qt_no_framework create_pc create_prl moc thread dll | ||
|
||
Name: Qgpsmm | ||
Description: GPS Daemon communication library - QT binding | ||
Version: @VERSION@ | ||
Libs: -L${libdir} -lQgpsmm | ||
Libs.private: -L/usr/lib -lQtNetwork -lQtCore -lpthread | ||
Cflags: -I${includedir} | ||
Requires: QtNetwork |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
QMAKE_PRO_INPUT = libQgpsmm.pro | ||
QMAKE_PRL_TARGET = libQgpsmm.so.@LIBGPSVERSION@ | ||
QMAKE_PRL_CONFIG = include_source_dir lex yacc warn_on uic resources qt warn_on release incremental link_prl def_files_disabled exceptions no_mocdepend release stl qt_no_framework create_pc create_prl moc thread dll | ||
QMAKE_PRL_VERSION = @LIBGPSVERSION@ | ||
|