-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from timxx/dev
Dev
- Loading branch information
Showing
12 changed files
with
638 additions
and
97 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
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
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 |
---|---|---|
@@ -1,3 +1,27 @@ | ||
xmradio (0.4.4~raring) raring; urgency=low | ||
|
||
* 0.4.4 | ||
- New plugin: xmrmmkeys | ||
- New option: stick window | ||
|
||
-- Weitian Leung <[email protected]> Sun, 14 Jul 2013 17:03:41 +0800 | ||
|
||
xmradio (0.4.4~quantal) quantal; urgency=low | ||
|
||
* 0.4.4 | ||
- New plugin: xmrmmkeys | ||
- New option: stick window | ||
|
||
-- Weitian Leung <[email protected]> Sun, 14 Jul 2013 17:03:02 +0800 | ||
|
||
xmradio (0.4.4~precise) precise; urgency=low | ||
|
||
* 0.4.4 | ||
- New plugin: xmrmmkeys | ||
- New option: stick window | ||
|
||
-- Weitian Leung <[email protected]> Sun, 14 Jul 2013 17:01:14 +0800 | ||
|
||
xmradio (0.4.3~raring) raring; urgency=low | ||
|
||
* 0.4.3 | ||
|
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,18 @@ | ||
set(XMRMMKEYS_SOURCES | ||
xmrmmkeys.c | ||
) | ||
|
||
include_directories(${LIBPEAS_INCLUDE_DIRS}) | ||
include_directories(${PLUGIN_INCLUDE_DIR}) | ||
include_directories(${PROJECT_SOURCE_DIR}/src) | ||
include_directories(${GTK3_INCLUDE_DIRS}) | ||
include_directories(${GSTREAMER_INCLUDE_DIRS}) | ||
|
||
add_library(xmrmmkeys SHARED ${XMRMMKEYS_SOURCES}) | ||
target_link_libraries(xmrmmkeys | ||
${LIBPEAS_LIBRARIES} | ||
) | ||
|
||
install(TARGETS xmrmmkeys LIBRARY DESTINATION ${plugindir}) | ||
install(FILES xmrmmkeys.plugin DESTINATION ${plugindir}) | ||
|
Oops, something went wrong.