mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 19:53:48 +00:00
Move CMake library's files to libraries dir.
This commit is contained in:
parent
bea23eb814
commit
492f217330
15 changed files with 15 additions and 15 deletions
17
Tools/CMake/libraries/collada.cmake
Normal file
17
Tools/CMake/libraries/collada.cmake
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
project(collada)
|
||||
|
||||
addPath("${libDir}/collada/src/1.4/dom")
|
||||
addPath("${libDir}/collada/src/dae")
|
||||
addPath("${libDir}/collada/src/modules/LIBXMLPlugin")
|
||||
addPath("${libDir}/collada/src/modules/stdErrPlugin")
|
||||
addPath("${libDir}/collada/src/modules/STLDatabase")
|
||||
|
||||
addStaticLib()
|
||||
|
||||
addDef(DOM_INCLUDE_TINYXML)
|
||||
addDef(PCRE_STATIC)
|
||||
|
||||
addInclude(${libDir}/collada/include)
|
||||
addInclude(${libDir}/collada/include/1.4)
|
||||
addInclude(${libDir}/pcre)
|
||||
addInclude(${libDir}/tinyxml)
|
||||
3
Tools/CMake/libraries/convexDecomp.cmake
Normal file
3
Tools/CMake/libraries/convexDecomp.cmake
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
project(convexDecomp)
|
||||
|
||||
addStaticLib("${libDir}/convexDecomp")
|
||||
7
Tools/CMake/libraries/libogg.cmake
Normal file
7
Tools/CMake/libraries/libogg.cmake
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
project(libogg)
|
||||
|
||||
addPathRec("${libDir}/libogg")
|
||||
|
||||
addStaticLib()
|
||||
|
||||
addInclude(${libDir}/libogg/include)
|
||||
10
Tools/CMake/libraries/libtheora.cmake
Normal file
10
Tools/CMake/libraries/libtheora.cmake
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
project(libtheora)
|
||||
|
||||
addPathRec("${libDir}/libtheora")
|
||||
|
||||
addStaticLib()
|
||||
|
||||
addDef(TORQUE_OGGTHEORA)
|
||||
addDef(TORQUE_OGGVORIBS)
|
||||
addInclude(${libDir}/libogg/include)
|
||||
addInclude(${libDir}/libtheora/include)
|
||||
9
Tools/CMake/libraries/libvorbis.cmake
Normal file
9
Tools/CMake/libraries/libvorbis.cmake
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
project(libvorbis)
|
||||
|
||||
addPathRec("${libDir}/libvorbis")
|
||||
|
||||
addStaticLib()
|
||||
|
||||
addDef(TORQUE_OGGVORBIS)
|
||||
addInclude(${libDir}/libvorbis/include)
|
||||
addInclude(${libDir}/libogg/include)
|
||||
3
Tools/CMake/libraries/ljpeg.cmake
Normal file
3
Tools/CMake/libraries/ljpeg.cmake
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
project(ljpeg)
|
||||
|
||||
addStaticLib("${libDir}/ljpeg")
|
||||
9
Tools/CMake/libraries/lmng.cmake
Normal file
9
Tools/CMake/libraries/lmng.cmake
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
project(lmng)
|
||||
|
||||
addStaticLib("${libDir}/${PROJECT_NAME}")
|
||||
|
||||
addDef(MNG_OPTIMIZE_OBJCLEANUP)
|
||||
|
||||
addInclude(${libDir}/lpng)
|
||||
addInclude(${libDir}/zlib)
|
||||
addInclude(${libDir}/ljpeg)
|
||||
7
Tools/CMake/libraries/lpng.cmake
Normal file
7
Tools/CMake/libraries/lpng.cmake
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
project(lpng)
|
||||
|
||||
addStaticLib("${libDir}/${PROJECT_NAME}")
|
||||
|
||||
# addDef(PNG_NO_ASSEMBLER_CODE)
|
||||
|
||||
addInclude(${libDir}/zlib)
|
||||
5
Tools/CMake/libraries/lungif.cmake
Normal file
5
Tools/CMake/libraries/lungif.cmake
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
project(lungif)
|
||||
|
||||
addStaticLib("${libDir}/${PROJECT_NAME}")
|
||||
|
||||
addDef(_GBA_NO_FILEIO)
|
||||
9
Tools/CMake/libraries/opcode.cmake
Normal file
9
Tools/CMake/libraries/opcode.cmake
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
project(opcode)
|
||||
|
||||
addPath("${libDir}/${PROJECT_NAME}")
|
||||
addPath("${libDir}/${PROJECT_NAME}/Ice")
|
||||
|
||||
addStaticLib()
|
||||
|
||||
addDef(TORQUE_OPCODE)
|
||||
addDef(ICE_NO_DLL)
|
||||
8
Tools/CMake/libraries/pcre.cmake
Normal file
8
Tools/CMake/libraries/pcre.cmake
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
project(pcre)
|
||||
|
||||
addStaticLib("${libDir}/pcre")
|
||||
|
||||
addDef(PCRE_STATIC)
|
||||
addDef(HAVE_CONFIG_H)
|
||||
|
||||
set_property(TARGET pcre PROPERTY COMPILE_FLAGS /TP) #/TP = compile as C++
|
||||
3
Tools/CMake/libraries/squish.cmake
Normal file
3
Tools/CMake/libraries/squish.cmake
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
project(squish)
|
||||
|
||||
addStaticLib("${libDir}/${PROJECT_NAME}")
|
||||
3
Tools/CMake/libraries/tinyxml.cmake
Normal file
3
Tools/CMake/libraries/tinyxml.cmake
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
project(tinyxml)
|
||||
|
||||
addStaticLib("${libDir}/${PROJECT_NAME}")
|
||||
3
Tools/CMake/libraries/zlib.cmake
Normal file
3
Tools/CMake/libraries/zlib.cmake
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
project(zlib)
|
||||
|
||||
addStaticLib("${libDir}/${PROJECT_NAME}")
|
||||
Loading…
Add table
Add a link
Reference in a new issue