File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ project(Mu
9
9
set (CMAKE_C_STANDARD 99 )
10
10
set (CMAKE_C_STANDARD_REQUIRED ON )
11
11
12
+ # To Emily...
13
+ message ("******************************" )
14
+ message ("The continuation of the Mu along with the RetroArch Core is dedicated to" )
15
+ message ("Emily (1998-2020), your friendship was very important to me and I hope" )
16
+ message ("that you are resting well." )
17
+ message (" -- Your friend, Stephanie" )
18
+ message ("******************************" )
19
+
12
20
# Main project sources
13
21
add_subdirectory (src )
14
22
Original file line number Diff line number Diff line change @@ -46,9 +46,13 @@ add_definitions(-DBUILT_FROM_CMAKE)
46
46
# Annoying Visual Studio Warnings
47
47
add_definitions (-D_CRT_SECURE_NO_WARNINGS )
48
48
49
+ # Needed for GCC
50
+ set (THREADS_PREFER_PTHREAD_FLAG ON )
51
+ find_package (Threads REQUIRED )
52
+
49
53
# Need to link into all these Qt components
50
54
target_link_libraries (QtMu
51
- MuCore
55
+ MuCore Threads::Threads
52
56
Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Multimedia Qt5::Svg )
53
57
54
58
# Deployment for Windows
Original file line number Diff line number Diff line change 1
1
# Mu, a Palm OS Emulator
2
2
3
- The continuation of the RetroArch Core is dedicated to Emily (1998-2020), your
4
- friendship was very important to me and I hope that you are resting well.
3
+ The continuation of the Mu along with the RetroArch Core is dedicated to
4
+ Emily (1998-2020), your friendship was very important to me and I hope
5
+ that you are resting well.
5
6
-- Your friend, Stephanie
6
7
7
8
# The goal of this project
@@ -42,8 +43,8 @@ https://findicons.com/icon/164302/cursor (Libretro Port Joystick Cursor)
42
43
Using CMake, you just need to do:
43
44
44
45
* ` cmake . `
45
- * ` mkdir output `
46
- * ` cmake --build output `
46
+ * ` cmake --build . `
47
+ * You may specify a CMake target.
47
48
48
49
#### For RetroArch
49
50
You can’t perform that action at this time.
0 commit comments