-
-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Morten Borup Petersen
committed
Jan 6, 2025
1 parent
b30b76d
commit 9781418
Showing
9 changed files
with
45 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,40 @@ | ||
cmake_minimum_required(VERSION 3.9) | ||
|
||
###################################################################### | ||
## External project subdirectories | ||
###################################################################### | ||
|
||
include(FetchContent) | ||
|
||
# Fancy tab bar | ||
add_subdirectory(fancytabbar) | ||
|
||
# VSRTL | ||
add_subdirectory(VSRTL) | ||
set(VSRTL_BUILD_APP OFF) | ||
set(VSRTL_BUILD_TESTS OFF) | ||
FetchContent_Declare( | ||
VSRTL | ||
GIT_REPOSITORY https://github.com/mortbopet/VSRTL.git | ||
GIT_TAG master | ||
) | ||
|
||
FetchContent_MakeAvailable(VSRTL) | ||
|
||
# libelfin | ||
FetchContent_Declare( | ||
libelfin | ||
GIT_REPOSITORY https://github.com/mortbopet/libelfin.git | ||
GIT_TAG 93a424940dc6e721818c5634b1876c8800e3f980 | ||
) | ||
FetchContent_MakeAvailable(libelfin) | ||
|
||
add_subdirectory(libelfin) | ||
# Make autoMOC and autoUIC happy about the generated libelfin files | ||
set(libelfin_src "${CMAKE_CURRENT_BINARY_DIR}/libelfin") | ||
set_property(SOURCE "${libelfin_src}/elf_to_string.cc" PROPERTY SKIP_AUTOGEN ON) | ||
set_property(SOURCE "${libelfin_src}/dwarf_to_string.cc" PROPERTY SKIP_AUTOGEN ON) | ||
|
||
# ELFIO | ||
FetchContent_Declare( | ||
ELFIO | ||
GIT_REPOSITORY https://github.com/serge1/ELFIO.git | ||
GIT_TAG 79fcd11595d0793dec593e9072e36c7923c57c1a | ||
) | ||
FetchContent_MakeAvailable(ELFIO) |
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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
external/fancytabbar/fancytab.cpp → external/fancytabbar/src/fancytab.cpp
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,4 +1,4 @@ | ||
#include "fancytab.h" | ||
#include "fancytabbar/fancytab.h" | ||
|
||
#include <QDebug> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
external/fancytabbar/fancytabbar.cpp → external/fancytabbar/src/fancytabbar.cpp
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,4 +1,4 @@ | ||
#include "fancytabbar.h" | ||
#include "fancytabbar/fancytabbar.h" | ||
|
||
#include <QDebug> | ||
#include <QLinearGradient> | ||
|
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