• R/O
  • SSH

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

This is a fork of Zandronum used on servers hosted by The Sentinels Playground (TSPG), Euroboros (EB), and Down Under Doomers (DUD).


File Info

修訂. f9d26ee6ac4dc5fbdef00285ed52912fb1df35fd
大小 483 bytes
時間 2015-08-03 02:33:01
作者 Benjamin Berkels
Log Message

Merged with G1.9pre-416-g005313c

Content

cmake_minimum_required( VERSION 2.4 )

if(NOT CMAKE_CROSSCOMPILING)
	message(STATUS "${ZLIB_INCLUDE_DIR}" )
	message(STATUS "${BZIP2_INCLUDE_DIR}" )
	message(STATUS "${LZMA_INCLUDE_DIR}" )
	include_directories( "${ZLIB_INCLUDE_DIR}" "${BZIP2_INCLUDE_DIR}" "${LZMA_INCLUDE_DIR}" )
	add_executable( zipdir
		zipdir.c )
	target_link_libraries( zipdir ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} lzma )
	set( CROSS_EXPORTS ${CROSS_EXPORTS} zipdir PARENT_SCOPE )
endif(NOT CMAKE_CROSSCOMPILING)