-
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.
Summary for 0.3.0 podcastdl release ----------------------------------- Convert the build system to CMake Fix filename hadling using guid if available insted of enclosure_url Fix compatibility with other unixes using time.h instead of sys/time.h
- Loading branch information
Showing
10 changed files
with
42 additions
and
6 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,7 @@ | ||
cmake_minimum_required(VERSION 2.6) | ||
|
||
project(PODCASTDL) | ||
add_subdirectory(src) | ||
|
||
set(CMAKE_CXX_FLAGS "-g -Wall") | ||
|
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,9 @@ | ||
Tue Aug 14 2012. | ||
Summary for 0.3.0 podcastdl release | ||
Convert the build system to CMake | ||
Fix filename hadling using guid if available insted of enclosure_url | ||
Fix compatibility with other unixes using time.h instead of sys/time.h | ||
|
||
Sun Jun 05 2011. | ||
Summary for 0.2.1 podcastdl release | ||
First public version |
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 @@ | ||
include_directories(${PODCASTDL_SOURCE_DIR}/src /usr/include /usr/local/include) | ||
link_directories(${PODCASTDL_SOURCE_DIR}/src /usr/lib /usr/local/lib) | ||
add_definitions( -DPODCASTDL_VERSION_STRING=\"0.3.0\" ) | ||
|
||
|
||
add_executable(podcastdl podcastdl.c podcast.c util.c) | ||
target_link_libraries(podcastdl mrss) | ||
|
||
|
||
install(TARGETS podcastdl DESTINATION bin) | ||
|
||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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