File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ include_directories(${AVTRANSCODER_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
9
9
# Add C++11 flag
10
10
if (NOT WIN32 )
11
11
set (CMAKE_CXX_FLAGS "-std=c++0x" )
12
- elseif (NOT MSVC12 )
12
+ elseif (${MSVC_VERSION} LESS 1800 )
13
13
message ("C++11 not supported, will not build avOptionChecker app." )
14
14
return ()
15
15
endif ()
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ include_directories(${AVTRANSCODER_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
9
9
# Add C++11 flag
10
10
if (NOT WIN32 )
11
11
set (CMAKE_CXX_FLAGS "-std=c++0x" )
12
- elseif (NOT MSVC12 )
12
+ elseif (${MSVC_VERSION} LESS 1800 )
13
13
message ("C++11 not supported, will not build avPresetChecker app." )
14
14
return ()
15
15
endif ()
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ namespace avtranscoder
12
12
* @brief Wrapper of an AVCodecContext.
13
13
* @note The AVCodecContext is allocated and free by the class. It is not the case of the base class.
14
14
*/
15
- class CodecContext : public Context
15
+ class AvExport CodecContext : public Context
16
16
{
17
17
public:
18
18
CodecContext ( int req_flags = 0 );
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ namespace avtranscoder
15
15
* @brief Wrapper of AVContext.
16
16
* Can access Options through the corresponding context.
17
17
*/
18
- class Context
18
+ class AvExport Context
19
19
{
20
20
public:
21
21
Context () {}
You can’t perform that action at this time.
0 commit comments