• R/O
  • SSH

Tags
Keine Tags

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

Rev. f9d26ee6ac4dc5fbdef00285ed52912fb1df35fd
Größe 483 Bytes
Zeit 2015-08-03 02:33:01
Autor 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)