diff --git a/term/CMakeLists.txt b/term/CMakeLists.txt index f671d30f..68741c87 100644 --- a/term/CMakeLists.txt +++ b/term/CMakeLists.txt @@ -28,7 +28,9 @@ find_package(wxWidgets 3.0 COMPONENTS core base REQUIRED) include(${wxWidgets_USE_FILE}) if(APPLE) -add_executable(${PROJECT_NAME} MACOSX_BUNDLE ${SRC_LIST}) +set(MACOSX_BUNDLE_ICON_FILE "stmbl.icns" ) +set_source_files_properties(${CMAKE_CURRENT_SOURCE_DIR}/resources/stmbl.icns PROPERTIES MACOSX_PACKAGE_LOCATION "Resources") +add_executable(${PROJECT_NAME} MACOSX_BUNDLE ${SRC_LIST} ${CMAKE_CURRENT_SOURCE_DIR}/resources/stmbl.icns) else(APPLE) add_executable(${PROJECT_NAME} ${SRC_LIST}) endif(APPLE) diff --git a/term/resources/128x128.png b/term/resources/128x128.png new file mode 100755 index 00000000..023dc811 Binary files /dev/null and b/term/resources/128x128.png differ diff --git a/term/resources/16x16.png b/term/resources/16x16.png new file mode 100755 index 00000000..613b9ed6 Binary files /dev/null and b/term/resources/16x16.png differ diff --git a/term/resources/24x24.png b/term/resources/24x24.png new file mode 100755 index 00000000..92cf0c97 Binary files /dev/null and b/term/resources/24x24.png differ diff --git a/term/resources/256x256.png b/term/resources/256x256.png new file mode 100755 index 00000000..aa165a63 Binary files /dev/null and b/term/resources/256x256.png differ diff --git a/term/resources/32x32.png b/term/resources/32x32.png new file mode 100755 index 00000000..b74d8ed2 Binary files /dev/null and b/term/resources/32x32.png differ diff --git a/term/resources/48x48.png b/term/resources/48x48.png new file mode 100755 index 00000000..d1d3396a Binary files /dev/null and b/term/resources/48x48.png differ diff --git a/term/resources/512x512.png b/term/resources/512x512.png new file mode 100755 index 00000000..2ad92a96 Binary files /dev/null and b/term/resources/512x512.png differ diff --git a/term/resources/64x64.png b/term/resources/64x64.png new file mode 100755 index 00000000..7ddb57ac Binary files /dev/null and b/term/resources/64x64.png differ diff --git a/term/resources/96x96.png b/term/resources/96x96.png new file mode 100755 index 00000000..1ae7d9b6 Binary files /dev/null and b/term/resources/96x96.png differ diff --git a/term/resources/stmbl.icns b/term/resources/stmbl.icns new file mode 100644 index 00000000..a7e1b01d Binary files /dev/null and b/term/resources/stmbl.icns differ diff --git a/term/resources/stmbl.ico b/term/resources/stmbl.ico new file mode 100644 index 00000000..852cc7f5 Binary files /dev/null and b/term/resources/stmbl.ico differ