Changeset 320
- Timestamp:
- 05/10/07 16:34:11 (18 years ago)
- Location:
- libmpc/trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/CMakeLists.txt
r294 r320 19 19 add_subdirectory(mpcenc) 20 20 add_subdirectory(mpc2sv8) 21 add_subdirectory(mpccut) -
libmpc/trunk/mpccut/mpccut.c
r318 r320 41 41 #include "../libmpcdec/huffman.h" 42 42 #include "../libmpcdec/mpc_bits_reader.h" 43 44 #ifdef _MSC_VER 45 #define atoll _atoi64 46 #endif 43 47 44 48 static void copy_data(FILE * in_file, int in_file_pos, FILE * out_file, int data_size) -
libmpc/trunk/mpcdec/CMakeLists.txt
r236 r320 6 6 link_directories(${libmpc_BINARY_DIR}/libmpcdec) 7 7 8 add_executable(mpcdec mpcdec.c) 8 if(MSVC) 9 include_directories(${libmpc_SOURCE_DIR}/win32) 10 add_executable(mpcdec mpcdec ${libmpc_SOURCE_DIR}/win32/attgetopt) 11 endif(MSVC) 12 13 add_executable(mpcdec mpcdec) 9 14 10 15 if(NOT MSVC) -
libmpc/trunk/mpcgain/CMakeLists.txt
r262 r320 5 5 ) 6 6 7 FIND_LIBRARY(REPLAY_GAIN_LIBRARY NAMES replaygain PATHS7 FIND_LIBRARY(REPLAY_GAIN_LIBRARY NAMES replaygain replaygain_static PATHS 8 8 /usr/lib 9 9 /usr/local/lib
Note: See TracChangeset
for help on using the changeset viewer.