Skip to content

Commit

Permalink
podcastdl-0.3.1
Browse files Browse the repository at this point in the history
Summary for 0.3.1 podcastdl release
-----------------------------------
Fix missing DSO linking reference (for clang at least)
  • Loading branch information
rosorio committed Oct 24, 2018
1 parent b5397bb commit 483ec55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Tue Aug 14 2012.
Summary for 0.3.1 podcastdl release
Fix missing DSO linking reference (for clang at least)
Summary for 0.3.0 podcastdl release
Convert the build system to CMake
Fix filename hadling using guid if available insted of enclosure_url
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
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_definitions( -DPODCASTDL_VERSION_STRING=\"0.3.1\" )


add_executable(podcastdl podcastdl.c podcast.c util.c)
target_link_libraries(podcastdl mrss)
target_link_libraries(podcastdl mrss curl)


install(TARGETS podcastdl DESTINATION bin)
Expand Down

0 comments on commit 483ec55

Please sign in to comment.