Start on Nostalgia Studio

This commit is contained in:
2017-04-16 01:00:50 -05:00
parent 6b1ccc7ed2
commit 60b4a32995
21 changed files with 521 additions and 16 deletions

33
src/studio/CMakeLists.txt Normal file
View File

@@ -0,0 +1,33 @@
cmake_minimum_required(VERSION 2.8.11)
project(nostalgia-studio)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
add_executable(
nostalgia-studio
main.cpp
mainwindow.cpp
)
target_link_libraries(
nostalgia-studio
Qt5::Core
Qt5::Widgets
${OxClArgs_LIBRARY}
${OxFS_LIBRARY}
${OxStd_LIBRARY}
NostalgiaCommon
NostalgiaCore
NostalgiaStudioJson
)
install(
TARGETS
nostalgia-studio
RUNTIME DESTINATION
bin
)
add_subdirectory(json)