diff options
author | Michele Calgaro <[email protected]> | 2024-05-07 18:59:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-10 10:25:20 +0900 |
commit | dc5b11fc7d45bfeabd0866b8821fefbfc7fd1209 (patch) | |
tree | 5774d9f9cb72172ba61ded3344e43577f9baf227 /src/tools/jal | |
parent | d5d77862d18d9246d246969afc869713877f80fc (diff) | |
download | piklab-dc5b11fc7d45bfeabd0866b8821fefbfc7fd1209.tar.gz piklab-dc5b11fc7d45bfeabd0866b8821fefbfc7fd1209.zip |
CMake conversion
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 199d48de5c43ab5da32fdfe2006f9d89bd4b6d17)
Diffstat (limited to 'src/tools/jal')
-rw-r--r-- | src/tools/jal/CMakeLists.txt | 15 | ||||
-rw-r--r-- | src/tools/jal/gui/CMakeLists.txt | 9 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/tools/jal/CMakeLists.txt b/src/tools/jal/CMakeLists.txt new file mode 100644 index 0000000..91d0413 --- /dev/null +++ b/src/tools/jal/CMakeLists.txt @@ -0,0 +1,15 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} +) + + +##### subfolders + +add_subdirectory( gui ) + + +##### libjal (static) + +tde_add_library( jal STATIC_PIC AUTOMOC + SOURCES jal_compile.cpp jal_config.cpp jal.cpp jal_generator.cpp +) diff --git a/src/tools/jal/gui/CMakeLists.txt b/src/tools/jal/gui/CMakeLists.txt new file mode 100644 index 0000000..2b14fdc --- /dev/null +++ b/src/tools/jal/gui/CMakeLists.txt @@ -0,0 +1,9 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} +) + +##### libjalui (static) + +tde_add_library( jalui STATIC_PIC AUTOMOC + SOURCES jal_ui.cpp +) |