mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 00:31:16 +00:00
Move classes to submodules
This commit is contained in:
parent
417004e9d7
commit
d815692cdf
@ -189,7 +189,6 @@ add_library(lego1 SHARED
|
||||
LEGO1/mxvideoparamflags.cpp
|
||||
LEGO1/mxvideopresenter.cpp
|
||||
LEGO1/mxwavepresenter.cpp
|
||||
LEGO1/orientableroi.cpp
|
||||
LEGO1/pizza.cpp
|
||||
LEGO1/pizzamissionstate.cpp
|
||||
LEGO1/pizzeria.cpp
|
||||
@ -202,6 +201,7 @@ add_library(lego1 SHARED
|
||||
LEGO1/racestate.cpp
|
||||
LEGO1/radio.cpp
|
||||
LEGO1/radiostate.cpp
|
||||
LEGO1/realtime/orientableroi.cpp
|
||||
LEGO1/realtime/realtime.cpp
|
||||
LEGO1/realtime/realtimeview.cpp
|
||||
LEGO1/registrationbook.cpp
|
||||
@ -210,9 +210,9 @@ add_library(lego1 SHARED
|
||||
LEGO1/skateboard.cpp
|
||||
LEGO1/towtrack.cpp
|
||||
LEGO1/towtrackmissionstate.cpp
|
||||
LEGO1/viewmanager.cpp
|
||||
LEGO1/viewroi.cpp
|
||||
)
|
||||
LEGO1/viewmanager/viewmanager.cpp
|
||||
LEGO1/viewmanager/viewroi.cpp
|
||||
"LEGO1/realtime/mxmatrix.h" "LEGO1/realtime/mxvector.h")
|
||||
if (MINGW)
|
||||
target_compile_definitions(lego1 PRIVATE DIRECTINPUT_VERSION=0x0500)
|
||||
endif()
|
||||
@ -249,7 +249,7 @@ if (ISLE_BUILD_APP)
|
||||
ISLE/res/isle.rc
|
||||
ISLE/isleapp.cpp
|
||||
ISLE/define.cpp
|
||||
)
|
||||
"LEGO1/realtime/mxmatrix.h" "LEGO1/realtime/mxvector.h")
|
||||
|
||||
# Include LEGO1 headers in ISLE
|
||||
target_include_directories(isle PRIVATE "${CMAKE_SOURCE_DIR}/LEGO1")
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
#ifndef LEGO3DVIEW_H
|
||||
#define LEGO3DVIEW_H
|
||||
|
||||
#include "viewmanager.h"
|
||||
#include "viewmanager/viewmanager.h"
|
||||
|
||||
class Lego3DView {
|
||||
public:
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
#ifndef MXVECTOR_H
|
||||
#define MXVECTOR_H
|
||||
|
||||
#include "mxtypes.h"
|
||||
#include "../mxtypes.h"
|
||||
|
||||
#include <vec.h>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#include "orientableroi.h"
|
||||
|
||||
#include "decomp.h"
|
||||
#include "../decomp.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(OrientableROI, 0xdc)
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
#ifndef ROI_H
|
||||
#define ROI_H
|
||||
|
||||
#include "compat.h"
|
||||
#include "../compat.h"
|
||||
#include "../mxstl.h"
|
||||
#include "../realtime/realtime.h"
|
||||
#include "lodlist.h"
|
||||
#include "mxstl.h"
|
||||
#include "mxvector.h"
|
||||
#include "realtime/realtime.h"
|
||||
|
||||
/*
|
||||
* A simple bounding box object with Min and Max accessor methods.
|
||||
@ -10,7 +10,6 @@
|
||||
|
||||
#endif /* _WIN32 */
|
||||
|
||||
#include "mxmatrix.h"
|
||||
#include "tglVector.h"
|
||||
|
||||
namespace Tgl
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
#ifndef VIEWLODLIST_H
|
||||
#define VIEWLODLIST_H
|
||||
|
||||
#include "LODList.h"
|
||||
#include "../compat.h"
|
||||
#include "../mxtypes.h"
|
||||
#include "../realtime/LODList.h"
|
||||
#include "assert.h"
|
||||
#include "compat.h"
|
||||
#include "mxtypes.h"
|
||||
#pragma warning(disable : 4786)
|
||||
|
||||
class ViewLOD;
|
||||
@ -1,6 +1,6 @@
|
||||
#include "viewroi.h"
|
||||
|
||||
#include "decomp.h"
|
||||
#include "../decomp.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(ViewROI, 0xe0)
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
#ifndef VIEWROI_H
|
||||
#define VIEWROI_H
|
||||
|
||||
#include "orientableroi.h"
|
||||
#include "tgl/tgl.h"
|
||||
#include "../realtime/orientableroi.h"
|
||||
#include "../tgl/tgl.h"
|
||||
#include "viewlodlist.h"
|
||||
|
||||
/*
|
||||
Loading…
Reference in New Issue
Block a user