Skip to content

Commit dbdbcde

Browse files
committed
Renamed folders to match their projects properly.
1 parent c30fbdd commit dbdbcde

File tree

155 files changed

+51
-37982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+51
-37982
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 2.8)
22

3-
project(emulationstation)
3+
project(emulationstation-all)
44

55
#-------------------------------------------------------------------------------
66
#add local find scripts to CMAKE path
@@ -90,7 +90,7 @@ set(COMMON_INCLUDE_DIRS
9090
${EIGEN3_INCLUDE_DIR}
9191
${CURL_INCLUDE_DIR}
9292
${CMAKE_CURRENT_SOURCE_DIR}/external
93-
${CMAKE_CURRENT_SOURCE_DIR}/core/src
93+
${CMAKE_CURRENT_SOURCE_DIR}/es-core/src
9494
)
9595

9696
#add ALSA for Linux
@@ -184,5 +184,5 @@ set(LIBRARY_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
184184
# add each component
185185

186186
add_subdirectory("external")
187-
add_subdirectory("core")
188-
add_subdirectory("es")
187+
add_subdirectory("es-core")
188+
add_subdirectory("emulationstation")

core/CMakeLists.txt renamed to es-core/CMakeLists.txt

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ set(CORE_HEADERS
5454
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/ResourceManager.h
5555
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/SVGResource.h
5656
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/TextureResource.h
57+
58+
# Embedded assets (needed by ResourceManager)
59+
${emulationstation-all_SOURCE_DIR}/data/Resources.h
5760
)
5861

5962
set(CORE_SOURCES
@@ -106,56 +109,53 @@ set(CORE_SOURCES
106109
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/ResourceManager.cpp
107110
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/SVGResource.cpp
108111
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/TextureResource.cpp
109-
110-
# Embedded assets (needed by ResourceManager)
111-
${emulationstation_SOURCE_DIR}/data/Resources.h
112112
)
113113

114114
set(EMBEDDED_ASSET_SOURCES
115-
${emulationstation_SOURCE_DIR}/data/ResourceUtil.cpp
116-
${emulationstation_SOURCE_DIR}/data/converted/splash_svg.cpp
117-
${emulationstation_SOURCE_DIR}/data/converted/window_icon_256_png.cpp
118-
${emulationstation_SOURCE_DIR}/data/converted/button_png.cpp
119-
${emulationstation_SOURCE_DIR}/data/converted/button_filled_png.cpp
120-
${emulationstation_SOURCE_DIR}/data/converted/textinput_ninepatch_png.cpp
121-
${emulationstation_SOURCE_DIR}/data/converted/textinput_ninepatch_active_png.cpp
122-
${emulationstation_SOURCE_DIR}/data/converted/frame_png.cpp
123-
${emulationstation_SOURCE_DIR}/data/converted/scroll_gradient_png.cpp
124-
125-
${emulationstation_SOURCE_DIR}/data/converted/help_button_a_svg.cpp
126-
${emulationstation_SOURCE_DIR}/data/converted/help_button_b_svg.cpp
127-
${emulationstation_SOURCE_DIR}/data/converted/help_button_x_svg.cpp
128-
${emulationstation_SOURCE_DIR}/data/converted/help_button_y_svg.cpp
129-
${emulationstation_SOURCE_DIR}/data/converted/help_button_l_svg.cpp
130-
${emulationstation_SOURCE_DIR}/data/converted/help_button_r_svg.cpp
131-
${emulationstation_SOURCE_DIR}/data/converted/help_button_start_svg.cpp
132-
${emulationstation_SOURCE_DIR}/data/converted/help_button_select_svg.cpp
133-
${emulationstation_SOURCE_DIR}/data/converted/help_dpad_up_svg.cpp
134-
${emulationstation_SOURCE_DIR}/data/converted/help_dpad_down_svg.cpp
135-
${emulationstation_SOURCE_DIR}/data/converted/help_dpad_left_svg.cpp
136-
${emulationstation_SOURCE_DIR}/data/converted/help_dpad_right_svg.cpp
137-
${emulationstation_SOURCE_DIR}/data/converted/help_dpad_updown_svg.cpp
138-
${emulationstation_SOURCE_DIR}/data/converted/help_dpad_leftright_svg.cpp
139-
${emulationstation_SOURCE_DIR}/data/converted/help_dpad_all_svg.cpp
140-
141-
${emulationstation_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_regular_ttf.cpp
142-
${emulationstation_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_light_ttf.cpp
143-
${emulationstation_SOURCE_DIR}/data/converted/arrow_svg.cpp
144-
${emulationstation_SOURCE_DIR}/data/converted/option_arrow_svg.cpp
145-
${emulationstation_SOURCE_DIR}/data/converted/checkbox_checked_svg.cpp
146-
${emulationstation_SOURCE_DIR}/data/converted/checkbox_unchecked_svg.cpp
147-
${emulationstation_SOURCE_DIR}/data/converted/star_filled_svg.cpp
148-
${emulationstation_SOURCE_DIR}/data/converted/star_unfilled_svg.cpp
149-
${emulationstation_SOURCE_DIR}/data/converted/on_svg.cpp
150-
${emulationstation_SOURCE_DIR}/data/converted/off_svg.cpp
151-
${emulationstation_SOURCE_DIR}/data/converted/fav_add_svg.cpp
152-
${emulationstation_SOURCE_DIR}/data/converted/fav_remove_svg.cpp
153-
${emulationstation_SOURCE_DIR}/data/converted/slider_knob_svg.cpp
154-
155-
${emulationstation_SOURCE_DIR}/data/converted/busy_0_svg.cpp
156-
${emulationstation_SOURCE_DIR}/data/converted/busy_1_svg.cpp
157-
${emulationstation_SOURCE_DIR}/data/converted/busy_2_svg.cpp
158-
${emulationstation_SOURCE_DIR}/data/converted/busy_3_svg.cpp
115+
${emulationstation-all_SOURCE_DIR}/data/ResourceUtil.cpp
116+
${emulationstation-all_SOURCE_DIR}/data/converted/splash_svg.cpp
117+
${emulationstation-all_SOURCE_DIR}/data/converted/window_icon_256_png.cpp
118+
${emulationstation-all_SOURCE_DIR}/data/converted/button_png.cpp
119+
${emulationstation-all_SOURCE_DIR}/data/converted/button_filled_png.cpp
120+
${emulationstation-all_SOURCE_DIR}/data/converted/textinput_ninepatch_png.cpp
121+
${emulationstation-all_SOURCE_DIR}/data/converted/textinput_ninepatch_active_png.cpp
122+
${emulationstation-all_SOURCE_DIR}/data/converted/frame_png.cpp
123+
${emulationstation-all_SOURCE_DIR}/data/converted/scroll_gradient_png.cpp
124+
125+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_a_svg.cpp
126+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_b_svg.cpp
127+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_x_svg.cpp
128+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_y_svg.cpp
129+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_l_svg.cpp
130+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_r_svg.cpp
131+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_start_svg.cpp
132+
${emulationstation-all_SOURCE_DIR}/data/converted/help_button_select_svg.cpp
133+
${emulationstation-all_SOURCE_DIR}/data/converted/help_dpad_up_svg.cpp
134+
${emulationstation-all_SOURCE_DIR}/data/converted/help_dpad_down_svg.cpp
135+
${emulationstation-all_SOURCE_DIR}/data/converted/help_dpad_left_svg.cpp
136+
${emulationstation-all_SOURCE_DIR}/data/converted/help_dpad_right_svg.cpp
137+
${emulationstation-all_SOURCE_DIR}/data/converted/help_dpad_updown_svg.cpp
138+
${emulationstation-all_SOURCE_DIR}/data/converted/help_dpad_leftright_svg.cpp
139+
${emulationstation-all_SOURCE_DIR}/data/converted/help_dpad_all_svg.cpp
140+
141+
${emulationstation-all_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_regular_ttf.cpp
142+
${emulationstation-all_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_light_ttf.cpp
143+
${emulationstation-all_SOURCE_DIR}/data/converted/arrow_svg.cpp
144+
${emulationstation-all_SOURCE_DIR}/data/converted/option_arrow_svg.cpp
145+
${emulationstation-all_SOURCE_DIR}/data/converted/checkbox_checked_svg.cpp
146+
${emulationstation-all_SOURCE_DIR}/data/converted/checkbox_unchecked_svg.cpp
147+
${emulationstation-all_SOURCE_DIR}/data/converted/star_filled_svg.cpp
148+
${emulationstation-all_SOURCE_DIR}/data/converted/star_unfilled_svg.cpp
149+
${emulationstation-all_SOURCE_DIR}/data/converted/on_svg.cpp
150+
${emulationstation-all_SOURCE_DIR}/data/converted/off_svg.cpp
151+
${emulationstation-all_SOURCE_DIR}/data/converted/fav_add_svg.cpp
152+
${emulationstation-all_SOURCE_DIR}/data/converted/fav_remove_svg.cpp
153+
${emulationstation-all_SOURCE_DIR}/data/converted/slider_knob_svg.cpp
154+
155+
${emulationstation-all_SOURCE_DIR}/data/converted/busy_0_svg.cpp
156+
${emulationstation-all_SOURCE_DIR}/data/converted/busy_1_svg.cpp
157+
${emulationstation-all_SOURCE_DIR}/data/converted/busy_2_svg.cpp
158+
${emulationstation-all_SOURCE_DIR}/data/converted/busy_3_svg.cpp
159159
)
160160

161161
list(APPEND CORE_SOURCES ${EMBEDDED_ASSET_SOURCES})
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)