Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
nheko
Commits
7dde3a15
Commit
7dde3a15
authored
8 years ago
by
Konstantinos Sideris
Browse files
Options
Downloads
Patches
Plain Diff
Add appveyor CI
parent
3d3f2ec3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+8
-9
8 additions, 9 deletions
CMakeLists.txt
README.md
+1
-1
1 addition, 1 deletion
README.md
appveyor.yml
+32
-0
32 additions, 0 deletions
appveyor.yml
with
41 additions
and
10 deletions
CMakeLists.txt
+
8
−
9
View file @
7dde3a15
...
...
@@ -9,7 +9,6 @@ set(CMAKE_C_COMPILER gcc)
set
(
CMAKE_CXX_STANDARD 11
)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
set
(
CMAKE_INCLUDE_CURRENT_DIR ON
)
IF
(
NOT CMAKE_BUILD_TYPE
)
...
...
@@ -47,13 +46,9 @@ SET(PROJECT_VERSION ${CPACK_PACKAGE_VERSION})
MESSAGE
(
STATUS
"Version:
${
PROJECT_VERSION
}
"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
\
-std=gnu++11 \
-Wall \
-Wextra \
-Werror \
-pedantic"
)
if
(
CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
OR CMAKE_CXX_COMPILER_ID MATCHES
"GNU"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-std=gnu++11 -Wall -Wextra -Werror -pedantic"
)
endif
()
set
(
SRC_FILES
src/ChatPage.cc
...
...
@@ -133,5 +128,9 @@ qt5_wrap_cpp(MOC_HEADERS
qt5_add_resources
(
QRC resources/res.qrc
)
add_executable
(
nheko
${
SRC_FILES
}
${
UI_HEADERS
}
${
MOC_HEADERS
}
${
QRC
}
)
add_executable
(
nheko
${
OS_BUNDLE
}
${
SRC_FILES
}
${
UI_HEADERS
}
${
MOC_HEADERS
}
${
QRC
}
)
target_link_libraries
(
nheko Qt5::Widgets Qt5::Network
)
if
(
WIN32
)
target_link_libraries
(
nheko Qt5::WinMain
)
endif
(
WIN32
)
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
7dde3a15
nheko
----
[

](https://travis-ci.org/mujx/nheko)
[

](https://travis-ci.org/mujx/nheko)
[

](https://ci.appveyor.com/project/mujx/nheko/branch/master)
The motivation behind the project is to provide a native desktop app for [Matrix] that
feels more like a mainstream chat app ([Riot], Telegram etc) and less like an IRC client.
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
0 → 100644
+
32
−
0
View file @
7dde3a15
version
:
0.1.0-{build}
environment
:
global
:
MSYSTEM
:
"
MINGW64"
platform
:
x64
configuration
:
-
Release
build
:
verbosity
:
minimal
install
:
-
set QT_DIR=C:\Qt\5.8\msvc2015_64
-
set PATH=%PATH%;%QT_DIR%\bin;C:\MinGW\bin
build_script
:
-
cmake -G "Visual Studio 14 2015 Win64" -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
-
cmake --build build
-
ls -lh build
after_build
:
-
mkdir NhekoRelease
-
copy build\Debug\nheko.exe NhekoRelease\nheko.exe
-
windeployqt --release NhekoRelease\nheko.exe
-
7z a nheko_win_64.zip .\NhekoRelease\*
artifacts
:
-
path
:
nheko_win_64.zip
-
path
:
NhekoRelease\nheko.exe
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment