Changeset 105
- Timestamp:
- 11/08/06 20:53:41 (18 years ago)
- Location:
- mppenc/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
mppenc/trunk/CMakeLists.txt
r97 r105 2 2 project(mppenc C) 3 3 set(CMAKE_VERBOSE_MAKEFILE false) 4 set(CMAKE_C_FLAGS "-fno-strict-aliasing -Os -fomit-frame-pointer -pipe") 4 5 if(NOT MSVC) 6 set(CMAKE_C_FLAGS "-fno-strict-aliasing -Os -fomit-frame-pointer -pipe") 7 endif(NOT MSVC) 8 5 9 add_subdirectory(src) -
mppenc/trunk/src/CMakeLists.txt
r100 r105 1 1 add_definitions(-DMPP_ENCODER -DFAST_MATH -DCVD_FASTLOG) 2 2 add_executable(mppenc analy_filter encode_sv7 huffsv7 profile stderr winmsg ans fastmath keyboard psy tags bitstream fft4g mppenc psy_tab tools cvd fft_routines pipeopen quant wave_in) 3 4 if(WIN32) 5 target_link_libraries(mppenc winmm) 6 endif(WIN32) 7 8 if(NOT MSVC) 3 9 target_link_libraries(mppenc m) 10 endif(NOT MSVC) 11 4 12 if(CMAKE_SYSTEM_NAME STREQUAL OpenBSD) 5 13 target_link_libraries(mppenc ossaudio) 6 14 endif(CMAKE_SYSTEM_NAME STREQUAL OpenBSD) 15 7 16 install(TARGETS mppenc RUNTIME DESTINATION bin) -
mppenc/trunk/src/mppenc.h
r97 r105 20 20 #ifndef MPPENC_MPPENC_H 21 21 #define MPPENC_MPPENC_H 22 23 #ifdef _WIN3224 # define CVD_FASTLOG25 # define FAST_MATH26 #endif27 22 28 23 #include "mppdec.h" -
mppenc/trunk/win32/mppenc.vcproj
r97 r105 41 41 Name="VCCLCompilerTool" 42 42 Optimization="0" 43 PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;MPP_ENCODER "43 PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;MPP_ENCODER;CVD_FASTLOG;FAST_MATH" 44 44 ExceptionHandling="0" 45 45 BasicRuntimeChecks="3" … … 123 123 <Tool 124 124 Name="VCCLCompilerTool" 125 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;MPP_ENCODER "125 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;MPP_ENCODER;CVD_FASTLOG;FAST_MATH" 126 126 ExceptionHandling="0" 127 127 RuntimeLibrary="0"
Note: See TracChangeset
for help on using the changeset viewer.