Update liccor file for new project

This commit is contained in:
Gary Talent 2023-12-23 14:41:39 -06:00
parent 77e2c3f6a2
commit 2c5dfe35c9
32 changed files with 39 additions and 32 deletions

View File

@ -1,6 +1,13 @@
#project packages #project packages
set(JASPER_BUILD_PLAYER ON CACHE BOOL "Build Player")
set(JASPER_BUILD_STUDIO ON CACHE BOOL "Build Studio")
if(BUILDCORE_TARGET STREQUAL "gba")
set(JASPER_BUILD_STUDIO OFF)
endif()
if(APPLE) if(APPLE)
set(JASPER_DIST_BIN JasperStudio.app/Contents/MacOS) set(JASPER_DIST_BIN JasperStudio.app/Contents/MacOS)
set(JASPER_DIST_LIB JasperStudio.app/Contents/Library) set(JASPER_DIST_LIB JasperStudio.app/Contents/Library)
@ -11,6 +18,6 @@ endif()
add_subdirectory(modules) add_subdirectory(modules)
add_subdirectory(player) add_subdirectory(player)
if(TURBINE_BUILD_TYPE STREQUAL "Native") if(NOT BUILDCORE_TARGET STREQUAL "gba")
add_subdirectory(tools) add_subdirectory(tools)
endif() endif()

View File

@ -19,7 +19,7 @@ target_link_libraries(
) )
# Studio # Studio
if(TURBINE_BUILD_TYPE STREQUAL "Native") if(JASPER_BUILD_STUDIO)
add_library( add_library(
JasperStudioModules STATIC JasperStudioModules STATIC
studiomodules.cpp studiomodules.cpp

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <keel/module.hpp> #include <keel/module.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <keel/module.hpp> #include <keel/module.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <studioapp/studioapp.hpp> #include <studioapp/studioapp.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -17,7 +17,7 @@ target_link_libraries(
) )
add_subdirectory(keel) add_subdirectory(keel)
if(NOSTALGIA_BUILD_STUDIO) if(JASPER_BUILD_STUDIO)
add_subdirectory(studio) add_subdirectory(studio)
endif() endif()

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <keel/module.hpp> #include <keel/module.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <nostalgia/core/gfx.hpp> #include <nostalgia/core/gfx.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <studio/studio.hpp> #include <studio/studio.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <imgui.h> #include <imgui.h>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <keel/keel.hpp> #include <keel/keel.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <nostalgia/core/gfx.hpp> #include <nostalgia/core/gfx.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include "worldobjecteditor-imgui.hpp" #include "worldobjecteditor-imgui.hpp"

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <turbine/turbine.hpp> #include <turbine/turbine.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <nostalgia/core/gfx.hpp> #include <nostalgia/core/gfx.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <jasper/world/worldstatic.hpp> #include <jasper/world/worldstatic.hpp>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#include <ox/std/array.hpp> #include <ox/std/array.hpp>