-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
33 lines (31 loc) · 792 Bytes
/
CMakeLists.txt
File metadata and controls
33 lines (31 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cmake_minimum_required(VERSION 3.9)
project(pa3)
set(CMAKE_CXX_STANDARD 11)
add_executable(pa3
cs221util/lodepng/lodepng.cpp
cs221util/lodepng/lodepng.h
cs221util/PNG.cpp
cs221util/PNG.h
cs221util/RGBAPixel.cpp
cs221util/RGBAPixel.h
images/given-prunedremb95.png
images/given-prunedrosa95.png
images/given-prunedstanleytotem95.png
images/given-prunedubctotem95.png
images/remb.png
images/rosa.png
images/stanley-totem-poles.png
images/ubc-totem-poles.png
lodepng.o
main.cpp
main.o
Makefile
pa3
PNG.o
RGBAPixel.o
stats.cpp
stats.h
stats.o
twoDtree.cpp
twoDtree.h
twoDtree.o)