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. --- nGenEx/CMakeLists.txt | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 nGenEx/CMakeLists.txt (limited to 'nGenEx') diff --git a/nGenEx/CMakeLists.txt b/nGenEx/CMakeLists.txt new file mode 100644 index 0000000..6d18fe2 --- /dev/null +++ b/nGenEx/CMakeLists.txt @@ -0,0 +1,83 @@ +project(nGenEx) +add_library( + nGenEx STATIC + ActiveWindow.cpp + Archive.cpp + AviFile.cpp + Bitmap.cpp + Bmp.cpp + Bolt.cpp + Button.cpp + Camera.cpp + CameraView.cpp + Color.cpp + ComboBox.cpp + ComboList.cpp + ContentBundle.cpp + D3DXImage.cpp + DataLoader.cpp + EditBox.cpp + Encrypt.cpp + EventDispatch.cpp + FadeView.cpp + Fix.cpp + Font.cpp + FontMgr.cpp + FormatUtil.cpp + FormDef.cpp + FormWindow.cpp + Game.cpp + Geometry.cpp + Graphic.cpp + ImageBox.cpp + ImgView.cpp + Joystick.cpp + Keyboard.cpp + Layout.cpp + Light.cpp + ListBox.cpp + Locale_ss.cpp + MachineInfo.cpp + MCIWave.cpp + Menu.cpp + MouseController.cpp + Mouse.cpp + MultiController.cpp + ParseUtil.cpp + Particles.cpp + Physical.cpp + PngImage.cpp + Polygon.cpp + Projector.cpp + Random.cpp + Res.cpp + RichTextBox.cpp + Scene.cpp + Screen.cpp + ScrollWindow.cpp + Sha1.cpp + Shadow.cpp + Skin.cpp + Slider.cpp + Solid.cpp + SoundCard.cpp + Sound.cpp + SoundD3D.cpp + Sprite.cpp + TexCubeDX9.cpp + TexDX9.cpp + Video.cpp + VideoDX9.cpp + VideoDX9Enum.cpp + VideoDX9VertexBuffer.cpp + VideoFactory.cpp + VideoSettings.cpp + Water.cpp + WebBrowser.cpp + Window.cpp + ) +target_include_directories( + nGenEx + PUBLIC . + ) +# TODO: target_link_libraries(nGenEx PUBLIC DirectX9) -- cgit v1.1