Skip to content

Commit

Permalink
CMake got messed up again, too lazy to fix it; fixed Rake bugs, conti…
Browse files Browse the repository at this point in the history
…nued

writing tests and fixing bugs. Renamed 'MusicLibrary' to 'Library' so that
Autotest works properly.
  • Loading branch information
anaisbetts committed Dec 26, 2007
1 parent c68ec57 commit eb6d81d
Show file tree
Hide file tree
Showing 45 changed files with 802 additions and 725 deletions.
4 changes: 2 additions & 2 deletions .autotest
Expand Up @@ -5,15 +5,15 @@ require 'autotest/timestamp'
#require 'autotest/autoupdate'
#require 'autotest/emacs'
#require 'autotest/fixtures'
require 'autotest/growl'
#require 'autotest/growl'
require 'autotest/heckle'
#require 'autotest/html_report'
#require 'autotest/kdenotify'
#require 'autotest/menu'
#require 'autotest/migrate'
#require 'autotest/notify'
#require 'autotest/pretty'
#require 'autotest/screen'
require 'autotest/screen'
#require 'autotest/shame'
#require 'autotest/snarl'

Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -6,7 +6,7 @@ require 'rake/contrib/rubyforgepublisher'
require 'rake/clean'
require 'rake/rdoctask'
require 'rake/testtask'
require 'spec'
#require 'spec'

# Load other build files
Dir.glob("build/*.rake").each {|x| load x}
Expand All @@ -18,7 +18,7 @@ PKG_VERSION = "0.1"
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"

# Fixed up clean section to pick up extensions
CLEAN = FileList["**/*~", "**/*.bak", "**/core", 'ext/taglib/**/*.o', 'ext/**/*.dll', 'ext/**/*.so', 'ext/**/*.dylib', 'bin/*', 'data/*']
CLEAN = FileList["**/*~", "**/*.bak", "**/core", 'ext/taglib/**/*.o', 'ext/**/*.dll', 'ext/**/*.so', 'ext/**/*.dylib', 'bin/*']
CLOBBER = FileList['ext/**/Makefile', 'ext/**/CMakeCache.txt']


Expand Down
28 changes: 14 additions & 14 deletions ext/taglib/bindings/Makefile
Expand Up @@ -34,10 +34,10 @@ RM = /opt/local/bin/cmake -E remove -f
CMAKE_EDIT_COMMAND = /opt/local/bin/ccmake

# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/paul/Desktop/Estelle-ruby/ext/taglib
CMAKE_SOURCE_DIR = /Users/paul/Estelle-ruby/ext/taglib

# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/paul/Desktop/Estelle-ruby/ext/taglib
CMAKE_BINARY_DIR = /Users/paul/Estelle-ruby/ext/taglib

# Include the progress variables for this target.
include CMakeFiles/progress.make
Expand All @@ -48,25 +48,25 @@ include CMakeFiles/progress.make
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
cd /Users/paul/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)

# Special rule for the target edit_cache
edit_cache/fast: edit_cache

# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -P cmake_install.cmake
cd /Users/paul/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -P cmake_install.cmake

# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -P cmake_install.cmake
cd /Users/paul/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -P cmake_install.cmake

# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
cd /Users/paul/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake

# Special rule for the target install/local
install/local/fast: install/local
Expand All @@ -81,31 +81,31 @@ list_install_components/fast: list_install_components
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
cd /Users/paul/Estelle-ruby/ext/taglib/bindings && /opt/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)

# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache

# The main all target
all: cmake_check_build_system
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Desktop/Estelle-ruby/ext/taglib/CMakeFiles $(CMAKE_ALL_PROGRESS)
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Desktop/Estelle-ruby/ext/taglib/CMakeFiles 0
cd /Users/paul/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Estelle-ruby/ext/taglib/CMakeFiles $(CMAKE_ALL_PROGRESS)
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Estelle-ruby/ext/taglib/CMakeFiles 0

# The main clean target
clean:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/clean
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/clean

# The main clean target
clean/fast: clean

# Prepare targets for installation.
preinstall: all
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/preinstall
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/preinstall

# Prepare targets for installation.
preinstall/fast:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/preinstall
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/preinstall

# clear depends
depend:
Expand All @@ -132,5 +132,5 @@ help::
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
cd /Users/paul/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0

38 changes: 19 additions & 19 deletions ext/taglib/bindings/c/Makefile
Expand Up @@ -34,10 +34,10 @@ RM = /opt/local/bin/cmake -E remove -f
CMAKE_EDIT_COMMAND = /opt/local/bin/ccmake

# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/paul/Desktop/Estelle-ruby/ext/taglib
CMAKE_SOURCE_DIR = /Users/paul/Estelle-ruby/ext/taglib

# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/paul/Desktop/Estelle-ruby/ext/taglib
CMAKE_BINARY_DIR = /Users/paul/Estelle-ruby/ext/taglib

# Include the progress variables for this target.
include CMakeFiles/progress.make
Expand All @@ -48,25 +48,25 @@ include CMakeFiles/progress.make
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
cd /Users/paul/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)

# Special rule for the target edit_cache
edit_cache/fast: edit_cache

# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -P cmake_install.cmake
cd /Users/paul/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -P cmake_install.cmake

# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -P cmake_install.cmake
cd /Users/paul/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -P cmake_install.cmake

# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
cd /Users/paul/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake

# Special rule for the target install/local
install/local/fast: install/local
Expand All @@ -81,58 +81,58 @@ list_install_components/fast: list_install_components
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
cd /Users/paul/Estelle-ruby/ext/taglib/bindings/c && /opt/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)

# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache

# The main all target
all: cmake_check_build_system
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Desktop/Estelle-ruby/ext/taglib/CMakeFiles $(CMAKE_ALL_PROGRESS)
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Desktop/Estelle-ruby/ext/taglib/CMakeFiles 0
cd /Users/paul/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Estelle-ruby/ext/taglib/CMakeFiles $(CMAKE_ALL_PROGRESS)
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/paul/Estelle-ruby/ext/taglib/CMakeFiles 0

# The main clean target
clean:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/clean
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/clean

# The main clean target
clean/fast: clean

# Prepare targets for installation.
preinstall: all
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/preinstall
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/preinstall

# Prepare targets for installation.
preinstall/fast:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/preinstall
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/preinstall

# clear depends
depend:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1

# Convenience name for target.
bindings/c/CMakeFiles/tag_c.dir/rule:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/CMakeFiles/tag_c.dir/rule
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f CMakeFiles/Makefile2 bindings/c/CMakeFiles/tag_c.dir/rule

# Convenience name for target.
tag_c: bindings/c/CMakeFiles/tag_c.dir/rule

# fast build rule for target.
tag_c/fast:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/build
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/build

# target to build an object file
tag_c.o:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/tag_c.o
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/tag_c.o

# target to preprocess a source file
tag_c.i:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/tag_c.i
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/tag_c.i

# target to generate assembly for a file
tag_c.s:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/tag_c.s
cd /Users/paul/Estelle-ruby/ext/taglib && $(MAKE) -f bindings/c/CMakeFiles/tag_c.dir/build.make bindings/c/CMakeFiles/tag_c.dir/tag_c.s

# Help Target
help::
Expand All @@ -159,5 +159,5 @@ help::
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /Users/paul/Desktop/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
cd /Users/paul/Estelle-ruby/ext/taglib && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0

10 changes: 5 additions & 5 deletions ext/taglib/bindings/c/cmake_install.cmake
@@ -1,4 +1,4 @@
# Install script for directory: /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c
# Install script for directory: /Users/paul/Estelle-ruby/ext/taglib/bindings/c

# Set the install prefix
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
Expand Down Expand Up @@ -27,12 +27,12 @@ IF(NOT CMAKE_INSTALL_COMPONENT)
ENDIF(COMPONENT)
ENDIF(NOT CMAKE_INSTALL_COMPONENT)

FILE(INSTALL DESTINATION "/usr/local/lib" TYPE SHARED_LIBRARY PROPERTIES VERSION 0.0.0 SOVERSION 0 FILES "/Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c/libtag_c.dylib")
FILE(INSTALL DESTINATION "/usr/local/lib" TYPE SHARED_LIBRARY PROPERTIES VERSION 0.0.0 SOVERSION 0 FILES "/Users/paul/Estelle-ruby/ext/taglib/bindings/c/libtag_c.dylib")
IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" MATCHES "^()$")
EXECUTE_PROCESS(COMMAND install_name_tool
-id "libtag_c.0.dylib"
-change "/Users/paul/Desktop/Estelle-ruby/ext/taglib/taglib/libtag.1.dylib" "/usr/local/lib/libtag.1.dylib"
-change "/Users/paul/Estelle-ruby/ext/taglib/taglib/libtag.1.dylib" "/usr/local/lib/libtag.1.dylib"
"$ENV{DESTDIR}/usr/local/lib/libtag_c.0.dylib")
ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" MATCHES "^()$")
FILE(INSTALL DESTINATION "/usr/local/lib/pkgconfig" TYPE FILE FILES "/Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c/taglib_c.pc")
FILE(INSTALL DESTINATION "/usr/local/include/taglib" TYPE FILE FILES "/Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c/tag_c.h")
FILE(INSTALL DESTINATION "/usr/local/lib/pkgconfig" TYPE FILE FILES "/Users/paul/Estelle-ruby/ext/taglib/bindings/c/taglib_c.pc")
FILE(INSTALL DESTINATION "/usr/local/include/taglib" TYPE FILE FILES "/Users/paul/Estelle-ruby/ext/taglib/bindings/c/tag_c.h")
4 changes: 2 additions & 2 deletions ext/taglib/bindings/cmake_install.cmake
@@ -1,4 +1,4 @@
# Install script for directory: /Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings
# Install script for directory: /Users/paul/Estelle-ruby/ext/taglib/bindings

# Set the install prefix
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
Expand Down Expand Up @@ -29,6 +29,6 @@ ENDIF(NOT CMAKE_INSTALL_COMPONENT)

IF(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
INCLUDE("/Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/c/cmake_install.cmake")
INCLUDE("/Users/paul/Estelle-ruby/ext/taglib/bindings/c/cmake_install.cmake")

ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY)
18 changes: 9 additions & 9 deletions ext/taglib/cmake_install.cmake
@@ -1,4 +1,4 @@
# Install script for directory: /Users/paul/Desktop/Estelle-ruby/ext/taglib
# Install script for directory: /Users/paul/Estelle-ruby/ext/taglib

# Set the install prefix
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
Expand Down Expand Up @@ -27,22 +27,22 @@ IF(NOT CMAKE_INSTALL_COMPONENT)
ENDIF(COMPONENT)
ENDIF(NOT CMAKE_INSTALL_COMPONENT)

FILE(INSTALL DESTINATION "/usr/local/lib/pkgconfig" TYPE FILE FILES "/Users/paul/Desktop/Estelle-ruby/ext/taglib/taglib.pc")
FILE(INSTALL DESTINATION "/usr/local/bin" TYPE PROGRAM FILES "/Users/paul/Desktop/Estelle-ruby/ext/taglib/taglib-config")
FILE(INSTALL DESTINATION "/usr/local/lib/pkgconfig" TYPE FILE FILES "/Users/paul/Estelle-ruby/ext/taglib/taglib.pc")
FILE(INSTALL DESTINATION "/usr/local/bin" TYPE PROGRAM FILES "/Users/paul/Estelle-ruby/ext/taglib/taglib-config")
IF(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
INCLUDE("/Users/paul/Desktop/Estelle-ruby/ext/taglib/taglib/cmake_install.cmake")
INCLUDE("/Users/paul/Desktop/Estelle-ruby/ext/taglib/tests/cmake_install.cmake")
INCLUDE("/Users/paul/Desktop/Estelle-ruby/ext/taglib/examples/cmake_install.cmake")
INCLUDE("/Users/paul/Desktop/Estelle-ruby/ext/taglib/bindings/cmake_install.cmake")
INCLUDE("/Users/paul/Estelle-ruby/ext/taglib/taglib/cmake_install.cmake")
INCLUDE("/Users/paul/Estelle-ruby/ext/taglib/tests/cmake_install.cmake")
INCLUDE("/Users/paul/Estelle-ruby/ext/taglib/examples/cmake_install.cmake")
INCLUDE("/Users/paul/Estelle-ruby/ext/taglib/bindings/cmake_install.cmake")

ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY)
IF(CMAKE_INSTALL_COMPONENT)
SET(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
ELSE(CMAKE_INSTALL_COMPONENT)
SET(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
ENDIF(CMAKE_INSTALL_COMPONENT)
FILE(WRITE "/Users/paul/Desktop/Estelle-ruby/ext/taglib/${CMAKE_INSTALL_MANIFEST}" "")
FILE(WRITE "/Users/paul/Estelle-ruby/ext/taglib/${CMAKE_INSTALL_MANIFEST}" "")
FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES})
FILE(APPEND "/Users/paul/Desktop/Estelle-ruby/ext/taglib/${CMAKE_INSTALL_MANIFEST}" "${file}\n")
FILE(APPEND "/Users/paul/Estelle-ruby/ext/taglib/${CMAKE_INSTALL_MANIFEST}" "${file}\n")
ENDFOREACH(file)

0 comments on commit eb6d81d

Please sign in to comment.