forked from MyGUI/mygui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CMake install targets reworked, now Demos, Tools and media for both i…
…nstalls properly (at least on windows). added options for building Hikari and Awesomium plugins UnitTest_TextureAnimations updated (layout added) psd files in media moved to "vector" folder removed some unused or old Media
- Loading branch information
Showing
26 changed files
with
195 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<Paths> | ||
<Path root="true">@MYGUI_SOURCE_DIR@/Media</Path> | ||
<Path>@MYGUI_SOURCE_DIR@/Media/MyGUI_Media</Path> | ||
<Path root="true">@MYGUI_MEDIA_DIR@</Path> | ||
<Path>@MYGUI_MEDIA_DIR@/MyGUI_Media</Path> | ||
</Paths> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
############################################################### | ||
# Install media | ||
############################################################### | ||
|
||
# Set media target directory | ||
if (WIN32) | ||
set(MYGUI_MEDIA_PATH "Media") | ||
elseif (UNIX) | ||
set(MYGUI_MEDIA_PATH "share/MYGUI/Media") | ||
elseif (APPLE) | ||
# TODO | ||
endif () | ||
|
||
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ | ||
DESTINATION ${MYGUI_MEDIA_PATH} | ||
PATTERN ".svn" EXCLUDE | ||
PATTERN "CMakeLists.txt" EXCLUDE | ||
PATTERN "vector" EXCLUDE | ||
) |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<MyGUI type="Layout"> | ||
<Widget type="Window" skin="WindowCSMX" position="176 120 256 232" layer="RTT_Test" name="_Main"> | ||
<Property key="Widget_Caption" value="Window"/> | ||
<Property key="Window_MinSize" value="100 100"/> | ||
<Widget type="Edit" skin="WordWrap" position="4 4 239 188" align="Stretch"> | ||
<Property key="Widget_Caption" value="Controls:\n W - Create new window.\nV button on window to enlarge it.\nX button on window to close it.\nAlso try to resize window."/> | ||
</Widget> | ||
</Widget> | ||
</MyGUI> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
option(MYGUI_BUILD_AWESOMIUM_PLUGIN "Build Plugin AwesomiumWidget" FALSE) | ||
option(MYGUI_BUILD_HIKARI_PLUGIN "Build Plugin HikariWidget" FALSE) | ||
|
||
add_subdirectory(Plugin_StrangeButton) | ||
|
||
if(WIN32) | ||
add_subdirectory(Plugin_HikariWidget) | ||
endif(WIN32) | ||
if (MYGUI_BUILD_HIKARI_PLUGIN) | ||
if(WIN32) | ||
add_subdirectory(Plugin_HikariWidget) | ||
endif() | ||
endif() | ||
|
||
if(WIN32 OR APPLE) | ||
add_subdirectory(Plugin_AwesomiumWidget) | ||
endif(WIN32 OR APPLE) | ||
if (MYGUI_BUILD_AWESOMIUM_PLUGIN) | ||
if (WIN32 OR APPLE) | ||
add_subdirectory(Plugin_AwesomiumWidget) | ||
endif () | ||
endif() |
Binary file not shown.
Oops, something went wrong.