view dep/animia/CMakeLists.txt @ 83:d02fdf1d6708

*: huuuge update 1. make the now playing page function correctly 2. de-constructorfy many of our custom widgets, allowing them to be changed on-the-fly from the Now Playing page 3. ... :)
author Paper <mrpapersonic@gmail.com>
date Tue, 24 Oct 2023 22:01:02 -0400
parents 1ce00c1c8ddc
children eab9e623eb84
line wrap: on
line source

cmake_minimum_required(VERSION 3.9)
project(animia)
set(SRC_FILES
	src/main.cpp
)
if(LINUX)
	list(APPEND SRC_FILES src/linux.cpp)
elseif(UNIX) # this won't run on Linux
	list(APPEND SRC_FILES src/bsd.cpp)
elseif(WIN32)
	list(APPEND SRC_FILES src/win32.cpp)
endif()
add_library(animia SHARED ${SRC_FILES})
set_target_properties(animia PROPERTIES
    PUBLIC_HEADER animia/animia.h CXX_STANDARD 11)
target_include_directories(animia PRIVATE include)

if(BUILD_TESTS)
	project(test LANGUAGES CXX)
	add_executable(test test/main.cpp)

	target_include_directories(test PUBLIC include)
	target_link_libraries(test PUBLIC animia)
	set_target_properties(test PROPERTIES CXX_STANDARD 17)
endif()