From f9bc90d009d7c96d97e4bfa7a5679e01dddd5dfd Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 28 Sep 2021 21:51:34 +0200 Subject: Created best-guess cmake stubs Structure of the project as whole is... questionable. It looks that the directories are intermingled even if they appear separated. This is a first guess to have at least something in place. --- Magic2/CMakeLists.txt | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Magic2/CMakeLists.txt (limited to 'Magic2') diff --git a/Magic2/CMakeLists.txt b/Magic2/CMakeLists.txt new file mode 100644 index 0000000..e264eb0 --- /dev/null +++ b/Magic2/CMakeLists.txt @@ -0,0 +1,42 @@ +project(Magic2) +add_executable( + Magic2 + AlphaInverse.cpp + AlphaPalette.cpp + Command.cpp + ContentBundle.cpp + Editor.cpp + Grid.cpp + GridProps.cpp + l3ds.cpp + Locale_ss.cpp + M3DS.cpp + Magic.cpp + MagicDoc.cpp + MagicView.cpp + MainFrm.cpp + MaterialDialog.cpp + ModelFile3DS.cpp + ModelFileMAG.cpp + ModelFileOBJ.cpp + ModelView.cpp + Primitives.cpp + Selection.cpp + Selector.cpp + StdAfx.cpp + SurfacePropertiesDialog.cpp + TexCubeDX9.cpp + TextureMapDialog.cpp + Thumbnail.cpp + UVMapView.cpp + VideoDX9.cpp + ) +target_include_directories( + Magic2 + PRIVATE . + ) +target_link_libraries( + Magic2 + PUBLIC nGenEx + # TODO: PUBLIC? DirectX9 + ) -- cgit v1.1