Remove directories from IDLC install list

Signed-off-by: Dan Rose <dan@digilabs.io>
This commit is contained in:
Dan Rose 2020-03-30 11:39:39 -05:00 committed by Jeroen Koekkoek
parent 6413d71599
commit 9207ad0cf3

View file

@ -12,10 +12,10 @@
# Verify Maven is available # Verify Maven is available
find_package(Maven 3.0 REQUIRED) find_package(Maven 3.0 REQUIRED)
file(GLOB_RECURSE IDLC_G_SOURCES LIST_DIRECTORIES true *.g) file(GLOB_RECURSE IDLC_G_SOURCES LIST_DIRECTORIES false *.g)
file(GLOB_RECURSE IDLC_G4_SOURCES LIST_DIRECTORIES true *.g4) file(GLOB_RECURSE IDLC_G4_SOURCES LIST_DIRECTORIES false *.g4)
file(GLOB_RECURSE IDLC_JAVA_SOURCES LIST_DIRECTORIES true *.java) file(GLOB_RECURSE IDLC_JAVA_SOURCES LIST_DIRECTORIES false *.java)
file(GLOB_RECURSE IDLC_ST_SOURCES LIST_DIRECTORIES true *.st?) file(GLOB_RECURSE IDLC_ST_SOURCES LIST_DIRECTORIES false *.st?)
set(IDLC_JAR "${CMAKE_CURRENT_BINARY_DIR}/target/idlc-jar-with-dependencies.jar") set(IDLC_JAR "${CMAKE_CURRENT_BINARY_DIR}/target/idlc-jar-with-dependencies.jar")
mark_as_advanced(IDLC_JAR) mark_as_advanced(IDLC_JAR)