Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/util/CMakeLists.txt')
-rw-r--r--intern/cycles/util/CMakeLists.txt47
1 files changed, 47 insertions, 0 deletions
diff --git a/intern/cycles/util/CMakeLists.txt b/intern/cycles/util/CMakeLists.txt
new file mode 100644
index 00000000000..3fea6182a97
--- /dev/null
+++ b/intern/cycles/util/CMakeLists.txt
@@ -0,0 +1,47 @@
+
+INCLUDE_DIRECTORIES(.)
+
+SET(sources
+ util_cache.cpp
+ util_cuda.cpp
+ util_dynlib.cpp
+ util_md5.cpp
+ util_path.cpp
+ util_string.cpp
+ util_system.cpp
+ util_time.cpp
+ util_transform.cpp
+ util_view.cpp)
+
+SET(headers
+ util_algorithm.h
+ util_args.h
+ util_boundbox.h
+ util_cache.h
+ util_cuda.h
+ util_debug.h
+ util_dynlib.h
+ util_function.h
+ util_hash.h
+ util_image.h
+ util_list.h
+ util_map.h
+ util_math.h
+ util_md5.h
+ util_opengl.h
+ util_param.h
+ util_path.h
+ util_progress.h
+ util_set.h
+ util_string.h
+ util_system.h
+ util_thread.h
+ util_time.h
+ util_transform.h
+ util_types.h
+ util_view.h
+ util_vector.h
+ util_xml.h)
+
+ADD_LIBRARY(util ${sources} ${headers})
+