├── .DS_Store ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── Info.plist ├── LICENSE ├── README.md ├── main.cpp ├── main.exe.manifest ├── output.gif └── resources.rc /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/main.cpp -------------------------------------------------------------------------------- /main.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/main.exe.manifest -------------------------------------------------------------------------------- /output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lszl84/wx_cmake_fetchcontent_template/HEAD/output.gif -------------------------------------------------------------------------------- /resources.rc: -------------------------------------------------------------------------------- 1 | #define wxUSE_DPI_AWARE_MANIFEST 2 2 | #include 3 | --------------------------------------------------------------------------------