mirror of https://github.com/axmolengine/axmol.git
Merge pull request #12 from andyque/fixProbobufLinuxCompile
fix linux compile
This commit is contained in:
commit
e85f5d267b
|
@ -220,6 +220,7 @@ add_subdirectory(external/Box2D)
|
|||
add_subdirectory(external/unzip)
|
||||
add_subdirectory(external/xxhash)
|
||||
add_subdirectory(external/tinyxml2)
|
||||
add_subdirectory(external/protobuf-lite)
|
||||
endif()
|
||||
|
||||
# libcocos2d.a
|
||||
|
|
|
@ -125,7 +125,7 @@ elseif(WINDOWS)
|
|||
set(PLATFORM_SPECIFIC_LIBS libjpeg libpng libwebp libtiff libcurl_imp libwebsockets freetype250 glfw3 glew32 opengl32 libiconv libzlib)
|
||||
elseif(LINUX)
|
||||
set(PLATFORM_SPECIFIC_LIBS jpeg webp tiff freetype curl websockets
|
||||
fontconfig png pthread glfw GLEW GL X11 rt z ${FMOD_LIB})
|
||||
fontconfig png pthread glfw GLEW GL X11 rt z protobuf ${FMOD_LIB})
|
||||
elseif(MACOSX)
|
||||
|
||||
INCLUDE_DIRECTORIES ( /System/Library/Frameworks )
|
||||
|
|
|
@ -61,19 +61,6 @@ set(COCOS_CS_SRC
|
|||
editor-support/cocostudio/ActionTimeline/CCTimeLine.cpp
|
||||
editor-support/cocostudio/ActionTimeline/CSLoader.cpp
|
||||
editor-support/cocostudio/CSParseBinary.pb.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/extension_set.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/generated_message_util.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/message_lite.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/repeated_field.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/wire_format_lite.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/io/coded_stream.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/io/zero_copy_stream.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/io/zero_copy_stream_impl.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/stubs/common.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/stubs/once.cc
|
||||
../../../external/protocolBuf/src/google/protobuf/stubs/stringprintf.cc
|
||||
|
||||
)
|
||||
|
||||
include_directories( editor-support )
|
||||
|
|
Loading…
Reference in New Issue