summaryrefslogtreecommitdiffstats
path: root/src/Noise/CMakeLists.txt
blob: 4e99347f840a84514fe1139e4799614177305c59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

cmake_minimum_required (VERSION 2.6)
project (Cuberite)

include_directories ("${PROJECT_SOURCE_DIR}/../")

SET (SRCS
	Noise.cpp
)

SET (HDRS
	Noise.h
	OctavedNoise.h
	RidgedNoise.h
)

if(NOT MSVC)
	add_library(Noise ${SRCS} ${HDRS})
	target_link_libraries(Noise OSSupport)
endif()