a0c81463 [nostalgia/core/studio] East const some function args d5b232f5 [olympic/studio] Fix array bounds issue c79fe3be [buildcore] Make CMake configure failure trigger failed return code 1df4e780 [olympic/studio] Add new project menu, make file creation open file ffbdb09c [olympic/turbine/glfw] Add shift key support b35a956e [olympic/studio] Cleanup unused expression d3847caa [olympic/studio] Make Project::writeObj only write descriptor if it does not already exist or if debug build ae066a91 [olympic/studio] Fix Project::writeObj to ensure parent directory of file exists 67543af8 [ox/oc] Remove some unnecessary code 6b774ec2 [ox/oc] Fix array writing to write all values 4b9758f4 [nostalgia/core] Move most TileSheet member functions out of class bf12b15f [nostalgia/sample_project] Update some tilesheets to version 4 format a7328eb5 [nostalgia/core/studio] Reduce indent for Subsheet editor b52124a0 [nostalgia/core/studio] Revert new subsheet index increment to happen after index assignment eae9972f [nostalgia/sample_project] Add missing type descriptors d83e3929 [nostalgia/core] Cleanup, revert CompactTileSheet version to 1 e2d0a784 [olympic/keel] Cleanup f0882142 [nostalgia/core/studio] Change TileSheets to back to MC 6a2954f8 [nostalgia/core] Remove id from TileSheetV3::Subsheet, add TileSheetV4 9c19655c [nostalgia/core] Fix build, add SubSheet ID to SubSheet Editor view 087c834b [nostalgia/core/studio] Fix Add SubSheet to increment idIt before using it 79bdbf2e [nostalgia/core] Add id to TileSheetV3::SubSheet model 2bdc3def [nostalgia/core/opengl] Implement flip X and flip Y for BG tiles git-subtree-dir: deps/nostalgia git-subtree-split: a0c8146396a9e9c0dc48a2564f4e9870a212ed59
44 lines
614 B
CMake
44 lines
614 B
CMake
add_library(
|
|
StudioAppLib
|
|
aboutpopup.cpp
|
|
clawviewer.cpp
|
|
filedialogmanager.cpp
|
|
main.cpp
|
|
newmenu.cpp
|
|
newproject.cpp
|
|
projectexplorer.cpp
|
|
projecttreemodel.cpp
|
|
studioapp.cpp
|
|
)
|
|
target_compile_definitions(
|
|
StudioAppLib PUBLIC
|
|
OLYMPIC_LOAD_STUDIO_MODULES=1
|
|
OLYMPIC_APP_NAME="Studio"
|
|
)
|
|
target_link_libraries(
|
|
StudioAppLib PUBLIC
|
|
OxClArgs
|
|
OxLogConn
|
|
Studio
|
|
)
|
|
|
|
target_include_directories(
|
|
StudioAppLib PUBLIC
|
|
../include
|
|
)
|
|
|
|
install(
|
|
DIRECTORY
|
|
../include/studioapp
|
|
DESTINATION
|
|
include
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
StudioAppLib
|
|
DESTINATION
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|