Skip to content

use CMake to build external 3rd party modules for cocos2d-x

Notifications You must be signed in to change notification settings

drelaptop/cocos2d-x-external

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cocos2d-x-external

Build status

Plan

use CMake to build external 3rd party modules

setup CI for all platforms to ensure 3rd party works

Advice

use modern cmake (target_*), for example:

# create library
add_library(Box2D file.cpp)
target_compile_features(Box2D PUBLIC cxx_std_11)
target_include_directories(Box2D PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

# use library
target_link_libraries(game2 Box2D)

Links

About

use CMake to build external 3rd party modules for cocos2d-x

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CMake 53.6%
  • C++ 11.7%
  • Java 11.1%
  • Python 9.4%
  • Shell 8.2%
  • PowerShell 6.0%