aboutsummaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/CMakeLists.txt16
-rw-r--r--demos/InputMethod/CMakeLists.txt (renamed from demos/input_method/CMakeLists.txt)2
-rw-r--r--demos/InputMethod/main.cpp (renamed from demos/input_method/main.cpp)0
-rw-r--r--demos/ScrollView/CMakeLists.txt (renamed from demos/scroll_view/CMakeLists.txt)2
-rw-r--r--demos/ScrollView/main.cpp (renamed from demos/scroll_view/main.cpp)0
-rw-r--r--demos/SvgPath/CMakeLists.txt (renamed from demos/svg_path/CMakeLists.txt)2
-rw-r--r--demos/SvgPath/main.cpp (renamed from demos/svg_path/main.cpp)0
-rw-r--r--demos/graphics/CMakeLists.txt2
-rw-r--r--demos/main/CMakeLists.txt2
9 files changed, 13 insertions, 13 deletions
diff --git a/demos/CMakeLists.txt b/demos/CMakeLists.txt
index 220fbeae..9b8f0fec 100644
--- a/demos/CMakeLists.txt
+++ b/demos/CMakeLists.txt
@@ -1,23 +1,23 @@
-add_library(cru_demo_base INTERFACE)
+add_library(CruDemoBase INTERFACE)
-target_link_libraries(cru_demo_base INTERFACE CruPlatformBootstrap)
+target_link_libraries(CruDemoBase INTERFACE CruPlatformBootstrap)
if(WIN32)
add_subdirectory(graphics)
add_subdirectory(main)
- add_subdirectory(scroll_view)
+ add_subdirectory(ScrollView)
- add_subdirectory(input_method)
- add_subdirectory(svg_path)
+ add_subdirectory(InputMethod)
+ add_subdirectory(SvgPath)
elseif(APPLE)
add_subdirectory(graphics)
add_subdirectory(main)
- add_subdirectory(scroll_view)
+ add_subdirectory(ScrollView)
- add_subdirectory(input_method)
- add_subdirectory(svg_path)
+ add_subdirectory(InputMethod)
+ add_subdirectory(SvgPath)
elseif(UNIX)
add_subdirectory(xcb)
endif()
diff --git a/demos/input_method/CMakeLists.txt b/demos/InputMethod/CMakeLists.txt
index 7c19c4dd..8ceeaec9 100644
--- a/demos/input_method/CMakeLists.txt
+++ b/demos/InputMethod/CMakeLists.txt
@@ -8,5 +8,5 @@ if(APPLE)
)
endif()
-target_link_libraries(CruDemoInputMethod PRIVATE cru_demo_base)
+target_link_libraries(CruDemoInputMethod PRIVATE CruDemoBase)
diff --git a/demos/input_method/main.cpp b/demos/InputMethod/main.cpp
index abbbed2c..abbbed2c 100644
--- a/demos/input_method/main.cpp
+++ b/demos/InputMethod/main.cpp
diff --git a/demos/scroll_view/CMakeLists.txt b/demos/ScrollView/CMakeLists.txt
index 0b9196fe..8b34f5d8 100644
--- a/demos/scroll_view/CMakeLists.txt
+++ b/demos/ScrollView/CMakeLists.txt
@@ -9,4 +9,4 @@ if(APPLE)
endif()
target_add_resources(CruDemoScrollView cru/ui)
-target_link_libraries(CruDemoScrollView PRIVATE cru_demo_base CruUi)
+target_link_libraries(CruDemoScrollView PRIVATE CruDemoBase CruUi)
diff --git a/demos/scroll_view/main.cpp b/demos/ScrollView/main.cpp
index b049a408..b049a408 100644
--- a/demos/scroll_view/main.cpp
+++ b/demos/ScrollView/main.cpp
diff --git a/demos/svg_path/CMakeLists.txt b/demos/SvgPath/CMakeLists.txt
index 5488c6b0..34120111 100644
--- a/demos/svg_path/CMakeLists.txt
+++ b/demos/SvgPath/CMakeLists.txt
@@ -8,5 +8,5 @@ if(APPLE)
)
endif()
-target_link_libraries(CruDemoSvgPath PRIVATE cru_demo_base)
+target_link_libraries(CruDemoSvgPath PRIVATE CruDemoBase)
diff --git a/demos/svg_path/main.cpp b/demos/SvgPath/main.cpp
index 87c410e9..87c410e9 100644
--- a/demos/svg_path/main.cpp
+++ b/demos/SvgPath/main.cpp
diff --git a/demos/graphics/CMakeLists.txt b/demos/graphics/CMakeLists.txt
index 3a249b1d..b290ba13 100644
--- a/demos/graphics/CMakeLists.txt
+++ b/demos/graphics/CMakeLists.txt
@@ -1,3 +1,3 @@
add_executable(CruDemoGraphicsDrawCircle DrawCircle.cpp)
-target_link_libraries(CruDemoGraphicsDrawCircle PRIVATE cru_demo_base)
+target_link_libraries(CruDemoGraphicsDrawCircle PRIVATE CruDemoBase)
diff --git a/demos/main/CMakeLists.txt b/demos/main/CMakeLists.txt
index 721ace19..2da90405 100644
--- a/demos/main/CMakeLists.txt
+++ b/demos/main/CMakeLists.txt
@@ -9,4 +9,4 @@ if(APPLE)
endif()
target_add_resources(CruDemoMain cru/ui)
-target_link_libraries(CruDemoMain PRIVATE cru_demo_base CruUi)
+target_link_libraries(CruDemoMain PRIVATE CruDemoBase CruUi)