Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
HybridOS
hiDOMLayout
Commits
66069a50
Commit
66069a50
authored
May 13, 2021
by
XueShuming
Browse files
add version info
parent
92fe9a24
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
66069a50
...
...
@@ -25,6 +25,7 @@ hiacejs_run
node_test
*.pc
.build
*.so.*
#log
...
...
src/layout/CMakeLists.txt
View file @
66069a50
...
...
@@ -44,7 +44,7 @@
cmake_minimum_required
(
VERSION 3.10
)
project
(
hidomlayout
)
project
(
hidomlayout
VERSION 1.0.0
)
#add_definitions(-D_DEBUG)
...
...
@@ -69,8 +69,10 @@ list(APPEND hidomlayout_SOURCES
include_directories
(
${
hidomlayout_INCLUDE_DIRECTORIES
}
${
GLIB_INCLUDE_DIRS
}
)
link_directories
(
${
GLIB_LIBRARIES
}
)
add_library
(
hidomlayout SHARED
${
hidomlayout_SOURCES
}
)
set_target_properties
(
hidomlayout PROPERTIES VERSION
${
PROJECT_VERSION
}
SOVERSION
${
PROJECT_VERSION_MAJOR
}
)
target_link_libraries
(
hidomlayout css
)
configure_file
(
hidomlayout.pc.in hidomlayout.pc @ONLY
)
install
(
FILES
${
CMAKE_CURRENT_BINARY_DIR
}
/hidomlayout.pc DESTINATION lib/pkgconfig
)
install
(
FILES
${
CMAKE_SOURCE_DIR
}
/include/hidomlayout.h DESTINATION include
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment