mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-29 09:23:32 +00:00
24 lines
486 B
CMake
24 lines
486 B
CMake
# ASE - Allegro Sprite Editor
|
|
# Copyright (C) 2001-2010 David Capello
|
|
|
|
include_directories(include)
|
|
|
|
add_library(vaca
|
|
src/Application.cpp
|
|
src/Component.cpp
|
|
src/Debug.cpp
|
|
src/Event.cpp
|
|
src/Exception.cpp
|
|
src/Mutex.cpp
|
|
src/Point.cpp
|
|
src/PreferredSizeEvent.cpp
|
|
src/Property.cpp
|
|
src/Rect.cpp
|
|
src/Referenceable.cpp
|
|
src/Size.cpp
|
|
src/String.cpp
|
|
src/Vaca.cpp)
|
|
|
|
set_target_properties(vaca PROPERTIES
|
|
COMPILE_FLAGS "-DVACA_ALLEGRO -DDEBUGMODE -DALLEGRO_STATICLINK")
|