summaryrefslogtreecommitdiffstats
path: root/src/common/test/CMakeLists.txt
blob: a1a7a50d57690303b18cc74a742da959cc11c9ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cmake_minimum_required(VERSION 2.8)

set(CMAKE_BUILD_TYPE debug)
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -g -O0 -std=c++11")

include_directories("../../")
include_directories("../../../")

add_executable(image_test ../image.cpp image_test.cpp)
target_link_libraries(image_test -lpng -lSDL -lSDL_image)

add_executable(profile_test ../profile.cpp profile_test.cpp)

add_test(profile_test ./profile_test)