mirror of https://github.com/axmolengine/axmol.git
35 lines
1.1 KiB
CMake
35 lines
1.1 KiB
CMake
set(EXTENSIONS_SRC
|
|
assets-manager/AssetsManager.cpp
|
|
GUI/CCControlExtension/CCControl.cpp
|
|
GUI/CCControlExtension/CCControlButton.cpp
|
|
GUI/CCControlExtension/CCControlColourPicker.cpp
|
|
GUI/CCControlExtension/CCControlHuePicker.cpp
|
|
GUI/CCControlExtension/CCControlPotentiometer.cpp
|
|
GUI/CCControlExtension/CCControlSaturationBrightnessPicker.cpp
|
|
GUI/CCControlExtension/CCControlSlider.cpp
|
|
GUI/CCControlExtension/CCControlStepper.cpp
|
|
GUI/CCControlExtension/CCControlSwitch.cpp
|
|
GUI/CCControlExtension/CCControlUtils.cpp
|
|
GUI/CCControlExtension/CCInvocation.cpp
|
|
GUI/CCControlExtension/CCScale9Sprite.cpp
|
|
GUI/CCEditBox/CCEditBox.cpp
|
|
GUI/CCEditBox/CCEditBoxImplAndroid.cpp
|
|
GUI/CCEditBox/CCEditBoxImplNone.cpp
|
|
GUI/CCEditBox/CCEditBoxImplTizen.cpp
|
|
GUI/CCEditBox/CCEditBoxImplWin.cpp
|
|
GUI/CCScrollView/CCScrollView.cpp
|
|
GUI/CCScrollView/CCSorting.cpp
|
|
GUI/CCScrollView/CCTableView.cpp
|
|
GUI/CCScrollView/CCTableViewCell.cpp
|
|
physics-nodes/CCPhysicsDebugNode.cpp
|
|
physics-nodes/CCPhysicsSprite.cpp
|
|
)
|
|
|
|
include_directories(
|
|
..
|
|
)
|
|
|
|
add_library(extensions STATIC
|
|
${EXTENSIONS_SRC}
|
|
)
|