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
3f1e3331
Commit
3f1e3331
authored
Mar 15, 2021
by
XueShuming
Browse files
add css_select.c
parent
2ad837ab
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
3f1e3331
...
...
@@ -27,3 +27,6 @@ hiacejs_run
#log
*.log
log
#test
css_select_test
CMakeLists.txt
View file @
3f1e3331
...
...
@@ -48,4 +48,4 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
find_package
(
HiCSS REQUIRED
)
add_subdirectory
(
src
)
#
add_subdirectory(test)
add_subdirectory
(
test
)
test/CMakeLists.txt
0 → 100644
View file @
3f1e3331
cmake_minimum_required
(
VERSION 3.10
)
project
(
css_select_test
)
# css
list
(
APPEND css_select_test_INCLUDE_DIRECTORIES
${
CMAKE_SOURCE_DIR
}
/src/dom
${
CMAKE_SOURCE_DIR
}
/src/select
)
list
(
APPEND css_select_test_SOURCES
${
CMAKE_SOURCE_DIR
}
/test/css_select.c
)
include_directories
(
${
css_select_test_INCLUDE_DIRECTORIES
}
)
link_directories
(
${
HICSS_LIBRARY_DIRS
}
)
add_executable
(
css_select_test
${
css_select_test_SOURCES
}
)
target_link_libraries
(
css_select_test hilayout
)
test/css_select.c
0 → 100644
View file @
3f1e3331
/////////////////////////////////////////////////////////////////////////////// //
// IMPORTANT NOTICE
//
// The following open source license statement does not apply to any
// entity in the Exception List published by FMSoft.
//
// For more information, please visit:
//
// https://www.fmsoft.cn/exception-list
//
//////////////////////////////////////////////////////////////////////////////
/**
\verbatim
This file is part of HybridOS, a developing operating system based on
MiniGUI. HybridOs will support embedded systems and smart IoT devices.
Copyright (C) 2020 Beijing FMSoft Technologies Co., Ltd.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Or,
As this program is a library, any link to this program must follow
GNU General Public License version 3 (GPLv3). If you cannot accept
GPLv3, you need to be licensed from FMSoft.
If you have got a commercial license of this program, please use it
under the terms and conditions of the commercial license.
For more information about the commercial license, please refer to
<http://www.minigui.com/blog/minigui-licensing-policy/>.
\endverbatim
*/
#include <stdio.h>
int
main
(
int
argc
,
char
*
argv
[])
{
return
0
;
}
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