Skip to content

Commit 1a6171e

Browse files
committed
Fix not installing development headers on first build.
1 parent 5961239 commit 1a6171e

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/packaging.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ name: Packaging
33
on:
44
workflow_dispatch:
55
pull_request:
6-
branches: [stable]
6+
branches: [stable, develop]
7+
push:
8+
paths:
9+
- 'debian/**'
10+
- '**.CMakeLists'
711

812
env:
913
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)

src/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ project(
1111
LANGUAGES C CXX)
1212
checkdebianchangelogversion(${PROJECT_NAME})
1313

14+
option(INSTALL_DEVELOPMENT "Install limesuiteng headers & development files" ON)
15+
1416
add_library(limesuiteng)
1517
# namespaced target for use in plugins build
1618
add_library(limesuiteng::limesuiteng ALIAS limesuiteng)
@@ -151,7 +153,6 @@ add_subdirectory(legacyapi)
151153

152154
add_subdirectory(examples)
153155

154-
option(INSTALL_DEVELOPMENT "Install limesuiteng headers & development files" ON)
155156
add_feature_info("INSTALL_DEVELOPMENT" INSTALL_DEVELOPMENT "Install limesuiteng headers & development files")
156157
if(INSTALL_DEVELOPMENT)
157158
install(

0 commit comments

Comments
 (0)