This website works better with JavaScript.
Home
Help
Sign In
JDR
/
jdr-desktop
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
🎉
Initial commit
master
Amaury Louarn
7 years ago
parent
acdd7dfb14
commit
fc1b997877
3 changed files
with
31 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
CMakeLists.txt
+11
-0
src/CMakeLists.txt
+9
-0
src/main.cpp
+ 11
- 0
CMakeLists.txt
View File
@ -0,0 +1,11 @@
project
(
jdr-desktop
)
cmake_minimum_required
(
VERSION
3.13
)
set
(
CMAKE_CXX_STANDARD
17
)
set
(
CMAKE_INCLUDE_CURRENT_DIR
ON
)
set
(
CMAKE_AUTOMOC
ON
)
find_package
(
Qt5
COMPONENTS
Core
Widgets
REQUIRED
)
add_subdirectory
(
src
)
+ 11
- 0
src/CMakeLists.txt
View File
@ -0,0 +1,11 @@
include_directories
(
${
jdr-desktop_SOURCE_DIR
}
)
include_directories
(
${
jdr-desktop_SOURCE_DIR
}
/include
)
add_executable
(
jdr-desktop
m
a
i
n
.
c
p
p
)
target_link_libraries
(
jdr-desktop
Q
t
5
:
:
C
o
r
e
Q
t
5
:
:
W
i
d
g
e
t
s
)
+ 9
- 0
src/main.cpp
View File
@ -0,0 +1,9 @@
#
include
<iostream>
#
include
<QApplication>
int
main
(
int
argc
,
char
*
*
argv
)
{
QApplication
app
(
argc
,
argv
)
;
return
app
.
exec
(
)
;
}
Write
Preview
Loading…
Cancel
Save