summaryrefslogblamecommitdiffstats
path: root/src/Noise/CMakeLists.txt
blob: 167ae7588a771266a4fb761301a4e798b47ef6e3 (plain) (tree)
1
2
3
4
5
6
7
8
9
                  







                                                 
                       






                                          

                                              
project (Cuberite)

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

SET (SRCS
	Noise.cpp
)

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

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